29 lines
698 B
JSON
29 lines
698 B
JSON
---
|
|
fileName: package.json
|
|
---
|
|
{
|
|
"name": "{{module.npmPackagename}}",
|
|
"version": "1.0.1",
|
|
"private": false,
|
|
"description": "{{module.description}}",
|
|
"main": "dist_ts/index.js",
|
|
"typings": "dist_ts/index.d.ts",
|
|
"type": "module",
|
|
"author": "{{module.author}}",
|
|
"license": "{{module.license}}",
|
|
"scripts": {
|
|
"test": "(tstest test/ --verbose --logfile --timeout 60)",
|
|
"build": "(tsbuild tsfolders --allowimplicitany)",
|
|
"buildDocs": "(tsdoc)"
|
|
},
|
|
"devDependencies": {
|
|
"@git.zone/tsbuild": "^4.1.2",
|
|
"@git.zone/tsrun": "^2.0.1",
|
|
"@git.zone/tstest": "^3.1.8",
|
|
"@types/node": "^25.2.0"
|
|
},
|
|
"dependencies": {
|
|
"@push.rocks/smartpath": "^6.0.0"
|
|
}
|
|
}
|