-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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": "ts-node-starter",
"version": "0.0.9",
"description": "",
"bin": {
"ts-node-starter": "scripts/init.js"
},
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsup --watch --onSuccess \"node dist/index.mjs\"",
"build": "tsup",
"prepare": "husky install",
"test": "vitest",
"test:report": "vitest --ui",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint . --fix --ext .ts --ignore-path .gitignore",
"format": "prettier --write . --ignore-path .gitignore"
},
"keywords": [],
"author": {
"name": "sooohka"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitest/ui": "^0.34.6",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"lint-staged": {
"*.{ts,tsx}": [
"bash -c tsc --noEmit",
"prettier --write --ignore-path .gitignore",
"eslint --fix --ignore-path .gitignore"
]
}
}