-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 KB
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": "node-template",
"version": "0.0.1",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"start": "node --enable-source-maps dist/index.js",
"start:dev": "node --watch-path=./dist --enable-source-maps dist/index.js",
"build": "pnpm type:build && node scripts/swc.js",
"build:dev": "node scripts/swc.js --dev",
"type:build": "tsc --project tsconfig.prod.json --emitDeclarationOnly",
"type:check": "tsc --project tsconfig.prod.json --noEmit",
"doc:build": "typedoc --tsconfig tsconfig.prod.json",
"test": "node --enable-source-maps --test dist/",
"test:dev": "node --enable-source-maps --test --watch dist/",
"lint": "eslint",
"cz": "cz",
"prepare": "husky"
},
"keywords": [],
"author": "",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.14.0",
"@swc/cli": "^0.5.0",
"@swc/core": "^1.9.2",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.9.0",
"chokidar": "^4.0.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}