-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (65 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "ts-bundle-template",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@9.12.3",
"description": "add description",
"author": "add author",
"license": "MIT",
"funding": "https://github.com/sponsors/productdevbook",
"homepage": "https://github.com/productdevbookcom/ts-bundle-template",
"repository": {
"type": "git",
"url": "https://github.com/productdevbookcom/ts-bundle-template.git"
},
"bugs": "https://github.com/productdevbookcom/ts-bundle-template/issues",
"keywords": [
"add keywords"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "unbuild",
"build:stub": "unbuild --stub",
"prepublishOnly": "pnpm run build",
"release": "pnpm build && bumpp --commit --push --tag && pnpm publish",
"lint": "eslint . && pnpm typecheck",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@antfu/eslint-config": "3.14.0",
"@vitest/coverage-v8": "^2.1.8",
"bumpp": "^9.10.1",
"eslint": "^9.18.0",
"lint-staged": "^15.3.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vitest": "^2.1.8"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm eslint . --fix"
},
"publishConfig": {
"access": "public"
}
}