-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "your-first-nodejs-helloworld-with-ts",
"version": "1.0.0",
"description": "your first nodejs helloworld with ts",
"type": "module",
"main": "./dist/helloworld.js",
"types": "./index.d.ts",
"scripts": {
"start": "npm test && npm run build",
"test": "npx tsd && tsx --test --test-reporter spec test/*.ts ",
"test:watch": "tsx --test --test-reporter spec --watch test/*.ts",
"test:coverage": "c8 tsx --test test/*.ts",
"build": "tsup src",
"debug": "tsx --inspect-brk src.main.ts",
"doc": "npx api-extractor run --local && api-documenter markdown -i temp -o docs/api && node docs/build.js &&"
},
"keywords": [],
"author": "npmstudy",
"license": "ISC",
"devDependencies": {
"@metalsmith/collections": "^1.3.0",
"@metalsmith/layouts": "^2.7.0",
"@metalsmith/markdown": "^1.10.0",
"@microsoft/api-documenter": "^7.23.4",
"@microsoft/api-extractor": "^7.37.1",
"@types/node": "^20.6.2",
"c8": "^8.0.1",
"finalhandler": "^1.2.0",
"jstransformer-handlebars": "^1.2.0",
"metalsmith": "^2.6.1",
"serve-static": "^1.15.0",
"tsd": "^0.29.0",
"tsup": "^7.2.0",
"tsx": "^3.12.10"
},
"tsup": {
"format": "esm",
"target": "node20",
"splitting": false,
"minify": false,
"clean": true
},
"files": [
"dist",
"index.d.ts"
]
}