-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "ts-node-starter",
"version": "0.0.0-development",
"description": "Start pack for TypeScript under NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Lorens León <[email protected]>",
"type": "module",
"files": ["src", "dist"],
"repository": {
"type": "git",
"url": "https://github.com/leon19/ts-node-starter"
},
"scripts": {
"build:dev": "tsc",
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf .tmp dist",
"test": "node --env-file .test.env --test 'src/**/*.test.ts'",
"cover": "c8 node --run test",
"lint": "biome check --write --unsafe src && prettier --write '*.md'",
"prepublishOnly": "node --run clean && node --run build",
"prepare": "husky"
},
"dependencies": {
"@types/node": "*"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"c8": "^10.1.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"semantic-release": "^24.2.0",
"ts-node": "^10.9.2",
"typescript": "~5.7.2"
},
"release": {
"branches": ["main"]
}
}