@msom/dom
Version:
@msom/dom
50 lines • 1.25 kB
JSON
{
"$schema": "https://json.schemastore.org/package",
"name": "@msom/dom",
"version": "0.0.9",
"description": "@msom/dom",
"main": "dist/index.js",
"typings": "dist/types/index.d.ts",
"type": "module",
"files": [
"dist",
"src",
"README.md",
"jsx-runtime.d.ts",
"jsx-dev-runtime.d.ts"
],
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/types/index.d.ts"
},
"./jsx-runtime": {
"default": "./dist/jsx-runtime.js"
},
"./jsx-dev-runtime": {
"default": "./dist/jsx-dev-runtime.js"
}
},
"keywords": [
"msom",
"dom"
],
"author": "msom",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@msom/common": "^0.0.8",
"@msom/reaction": "^0.0.8"
},
"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": "pnpm run clean && pnpm run check && xbuild build -c ./xbuild.config.ts",
"release": "pnpm run build && pnpm run version --patch && pnpm publish --no-git-checks",
"dev": "pnpm run --filter=./example dev"
}
}