-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
48
{
"name": "node-ts-lib-setup",
"version": "1.0.0",
"description": "A minimal typescript library boilerplate",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsup --config tsup.config.ts",
"lint": "eslint src --ext js,ts",
"lint:fix": "eslint src --ext js,ts --fix",
"lint:tsc": "tsc --diagnostics",
"prepare": "is-ci || husky install",
"prepublishOnly": "pnpm build",
"test:ci": "vitest --silent --run",
"test:coverage": "vitest run --coverage",
"test:dev": "vitest -w --logHeapUsage --inspect",
"test:ui": "vitest --ui --api 9527"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@swc/core": "^1.3.36",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitest/coverage-c8": "^0.28.5",
"@vitest/ui": "^0.28.5",
"ci-info": "^3.8.0",
"eslint": "^8.34.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
}
}