-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
48
{
"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 <lorensleon@gmail.com>",
"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 .env.test --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": "2.4.11",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@swc-node/register": "^1.11.1",
"c8": "^11.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"semantic-release": "^25.0.3",
"typescript": "~6.0.2"
},
"release": {
"branches": [
"main"
]
}
}