Files
node-utils/package.json
ztimson 8ea2b560a5
Some checks failed
Publish Library / Build NPM Project (push) Successful in 11s
Publish Library / Publish CDN & Docs (push) Failing after 5s
Publish Library / Tag Version (push) Successful in 7s
Removed vite, we dont need it
2025-12-27 14:45:58 -05:00

36 lines
723 B
JSON

{
"name": "@ztimson/node-utils",
"version": "1.0.5",
"description": "CSS Utility Classes",
"author": "ztimson",
"license": "MIT",
"private": false,
"readme": "README.md",
"repository": {
"type": "git",
"url": "git.zakscode.com:ztimson/node-utils"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"docs": "typedoc --cleanOutputDir false --out ./docs --entryPoints src/**/*.ts --readme none",
"watch": "tsc --watch"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typedoc": "^0.28.5",
"typescript": "^5.8.3"
},
"files": [
"dist"
]
}