-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.15 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "starter-ts",
"type": "module",
"version": "0.0.1",
"description": "Starter template for TypeScript library",
"private": false,
"scripts": {
"coverage": "vitest run --coverage",
"build": "unbuild --minify",
"dev": "unbuild --stub",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:eslint": "eslint . --fix",
"lint:format": "prettier --write --loglevel warn \"**/*.{js,cjs,ts}\"",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.cjs",
"lint:all": "pnpm run lint:eslint && pnpm run lint:format",
"doc": "typedoc --options typedoc.json",
"prepublishOnly": "pnpm run build",
"release": "bumpp --commit \"release: release v%s\" --push --tag && npm publish",
"npm:up": "pnpx npm-check-updates",
"test": "vitest",
"prepare": "husky install"
},
"homepage": "https://github.com/kailong321200875/starter-ts",
"bugs": {
"url": "https://github.com/kailong321200875/starter-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kailong321200875/starter-ts.git"
},
"keywords": [
"starter-ts",
"template",
"typescript"
],
"author": "Archer <502431556@qq.com>",
"license": "ISC",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"sideEffects": false,
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitest/coverage-v8": "^1.1.3",
"bumpp": "^9.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"jsdom": "^23.2.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^1.1.3"
},
"packageManager": "pnpm@8.1.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.1.0"
}
}