-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·66 lines (66 loc) · 1.77 KB
/
package.json
File metadata and controls
executable file
·66 lines (66 loc) · 1.77 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@aiou/ts-lib-template",
"version": "0.6.0",
"packageManager": "pnpm@8.13.1",
"description": "a starter for typescript lib",
"keywords": [
"typescript",
"lib",
"template",
"aiou"
],
"license": "MIT",
"homepage": "https://github.com/neo-hack/ts-lib-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/neo-hack/ts-lib-template.git"
},
"bugs": {
"url": "https://github.com/neo-hack/ts-lib-template/issues",
"email": "jiangweixian1994@gmail.com"
},
"author": {
"name": "JW",
"email": "jiangweixian1994@gmail.com",
"url": "https://twitter.com/jiangweixian"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tspc",
"dev": "rimraf lib && tspc -w",
"test": "vitest",
"pretest": "pnpm run build",
"ci:publish": "pnpm run build && pnpm changeset publish",
"ci:version": "pnpm changeset version",
"ci:snapshot": "pnpm changeset version --snapshot snapshot",
"ci:prerelease": "pnpm run build && pnpm changeset publish --no-git-tag --snapshot",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"lint-staged": {
"**/**/*.{js,ts,tsx,json,yml,yaml,md}": ["eslint --fix"]
},
"devDependencies": {
"@aiou/eslint-config": "1.2.1",
"@changesets/cli": "^2.19.0",
"@types/node": "^17.0.10",
"cz-emoji": "^1.3.1",
"eslint": "8.56.0",
"husky": "8.0.3",
"lint-staged": "^11.2.6",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"ts-patch": "3.1.1",
"tsc-progress": "^1.0.3",
"tslib": "2.3.0",
"typescript": "5.3.3",
"typescript-transform-paths": "3.4.6",
"vitest": "1.1.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-emoji"
}
}
}