Files
node-utils/package.json
ztimson cd5585afea
Some checks failed
Publish Library / Build NPM Project (push) Successful in 12s
Publish Library / Tag Version (push) Successful in 6s
Publish Library / Publish CDN & Docs (push) Failing after 4s
Better stdout capturing
2025-12-27 15:10:04 -05:00

37 lines
745 B
JSON

{
"name": "@ztimson/node-utils",
"version": "1.0.6",
"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",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"docs": "typedoc --cleanOutputDir false --out ./docs --entryPoints src/**/*.ts --readme none",
"watch": "tsc --watch"
},
"devDependencies": {
"@types/node": "^24.10.4",
"tsx": "^4.21.0",
"typedoc": "^0.28.5",
"typescript": "^5.9.3"
},
"files": [
"dist"
]
}