-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "algorithm4-javascript",
"description": "Use javascript to write the algorithm in Algorithm 4.",
"version": "1.0.0",
"type": "module",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhangpaopao0609/algorithm4-javascript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zhangpaopao0609/algorithm4-javascript/issues"
},
"homepage": "https://github.com/zhangpaopao0609/algorithm4-javascript#readme",
"devDependencies": {
"@algolia/client-search": "^4.14.2",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"vitepress": "^1.0.0-alpha.4",
"vue": "^3.2.37"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}