node-utils/package.json
ztimson c2b3d7dc3c
All checks were successful
Publish Library / Build NPM Project (push) Successful in 16s
Publish Library / Tag Version (push) Successful in 6s
Publish Library / Publish CDN & Docs (push) Successful in 20s
Fixed node import
2025-06-11 11:05:35 -04:00

39 lines
855 B
JSON

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