-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "web-study-record",
"type": "module",
"version": "1.0.0",
"description": "zhangpaopao web study record",
"author": "zhangpaopao0609",
"license": "ISC",
"homepage": "https://github.com/zhangpaopao0609/web-study-record#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zhangpaopao0609/web-study-record.git"
},
"bugs": {
"url": "https://github.com/zhangpaopao0609/web-study-record/issues"
},
"keywords": [],
"scripts": {
"eslint:fix": "eslint --fix -c eslint.config.js .",
"prepare": "husky",
"docs:dev": "cd docs && pnpm run docs:dev",
"docs:build": "cd docs && pnpm run docs:build"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.0",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"eslint": "^8.57.0",
"eslint-plugin-format": "^0.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.3.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix"
]
}
}