I overreached on the getter / setters sharing the same names, and everything _seemed_ to work OK at first, but then when I tried to import it...
34 lines
849 B
JSON
34 lines
849 B
JSON
{
|
|
"name": "fluent-dom-esm",
|
|
"version": "2.0.0",
|
|
"description": "",
|
|
"license": "WTFPL",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/fluent-dom-esm.js"
|
|
}
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"module": "./dist/fluent-dom-esm.js",
|
|
"scripts": {
|
|
"add-license": "cat ./src/license-begin.txt ./dist/fluent-dom-esm.js ./src/license-end.txt > .temp && mv .temp ./dist/fluent-dom-esm.js",
|
|
"build": "tsc && vite build && yarn add-license",
|
|
"ci": "yarn build",
|
|
"dev": "vite",
|
|
"preview": "vite preview",
|
|
"prepublishOnly": "yarn build",
|
|
"postpublish": "git push && git push --tags",
|
|
"test": "echo 'No tests yet!'"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.6.2",
|
|
"typescript": "^5.9.2",
|
|
"unplugin-dts": "1.0.0-beta.6",
|
|
"vite": "^7.1.4"
|
|
},
|
|
"packageManager": "yarn@4.9.4"
|
|
}
|