-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.5 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
{
"name": "git-prompt-kit-docs",
"version": "1.0.0",
"description": "Documentation for git-prompt-kit",
"main": "index.js",
"scripts": {
"algolia:index": "docker run --platform=linux/amd64 -it --env-file=./.env -e \"CONFIG=$(node docsearch.config.js)\" algolia/docsearch-scraper",
"docs:crawl": "docker run --platform=linux/amd64 -it --env-file=./.env -e \"CONFIG=$(node docsearch.config.js)\" algolia/docsearch-scraper",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"prepare": "husky install"
},
"keywords": [],
"author": "Henry Bley-Vroman <olets@olets.dev>",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@algolia/client-search": "^4.19.1",
"@commitlint/cli": "^17.7.0",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "*",
"@vuepress/client": "2.0.0-beta.67",
"@vuepress/plugin-docsearch": "2.0.0-beta.67",
"@vuepress/plugin-shiki": "2.0.0-beta.5",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.1",
"react": "16.8.0",
"react-dom": "16.8.0",
"typescript": ">=4.4.4",
"vue": "^3.3.4",
"vuepress": "2.0.0-beta.67"
},
"lint-staged": {
"**/*.{js,vue}": "eslint --cache --fix --no-ignore",
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"pinia": "^2.1.6"
},
"peerDependencies": {
"@types/node": "*",
"typescript": ">=4.4.4"
}
}