-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "aiou",
"version": "1.0.0",
"packageManager": "pnpm@7.23.0",
"description": "The neo for side projects manager",
"keywords": ["neo"],
"license": "MIT",
"homepage": "https://github.com/neo-hack/neo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/neo-hack/neo.git"
},
"bugs": {
"url": "https://github.com/neo-hack/neo/issues"
},
"author": {
"name": "jiangweixian"
},
"files": ["packages/core"],
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.{js,ts,tsx,json}'",
"lint:fix": "eslint . --fix",
"build": "pnpm -r run build",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm run build && pnpm changeset publish",
"ci:snapshot": "pnpm changeset version --snapshot beta",
"ci:prerelease": "pnpm run build && pnpm changeset publish --tag beta",
"prepare": "husky install",
"test": "pnpm -r vitest:ci"
},
"lint-staged": {
"**/**/*.{js,ts,tsx,vue,json}": ["eslint --fix"]
},
"devDependencies": {
"@aiou/eslint-config": "^0.10.0",
"@changesets/cli": "^2.19.0",
"cz-emoji": "^1.3.1",
"eslint": "^8.12.0",
"fs-extra": "^10.0.0",
"glob": "7.2.0",
"husky": "^8.0.0",
"lint-staged": "^12.1.7",
"typescript": "^4.5.4"
},
"pnpm": {
"patchedDependencies": {
"glob@7.2.0": "patches/glob@7.2.0.patch"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-emoji"
},
"cz-emoji": {
"scopes": [
"mario",
"neo"
]
}
}
}