UNPKG

@msom/common

Version:

@msom/common

45 lines 1.17 kB
{ "$schema": "https://json.schemastore.org/package", "name": "@msom/common", "version": "0.0.15", "description": "@msom/common", "main": "dist/index.cjs.js", "module": "dist/index.js", "typings": "dist/types/index.d.ts", "type": "module", "exports": { ".": { "require": "./dist/index.cjs.js", "import": "./dist/index.js", "types": "./dist/types/index.d.ts" } }, "files": [ "dist", "src", "README.md" ], "keywords": [ "msom", "common" ], "author": "msom", "license": "MIT", "publishConfig": { "access": "public" }, "dependencies": { "@msom/common": "file:" }, "scripts": { "clean": "rimraf dist", "version": "node ../../scripts/version.js", "check": "tsc --noEmit", "build::vite": "pnpm run clean && pnpm run check && vite build -c ../../vite.config.ts", "build": "rimraf dist/types && pnpm run check && xbuild build -c ../../xbuild.config.ts", "release": "pnpm run build && pnpm run version --patch && pnpm publish --no-git-checks", "unrel": "pnpm unpublish --force", "rel": "pnpm publish", "dev": "pnpm run -r --filter=./example dev" } }