-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 996 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 996 Bytes
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
{
"name": "documentation",
"private": true,
"type": "module",
"version": "1.0.0",
"description": "This is a package for documentation proposes.",
"repository": {
"type": "git",
"url": "https://github.com/PrivateAim/documentation.git"
},
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"dev": "vitepress dev src --temp .temp",
"build": "vitepress build src --temp .temp",
"help": "vitepress --help",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [
"docs"
],
"license": "MIT",
"devDependencies": {
"@tada5hi/eslint-config-vue-typescript": "^1.3.10",
"eslint": "^8.57.0",
"flexsearch": "^0.7.43",
"rimraf": "^6.0.0",
"typescript": "^5.4.3"
},
"dependencies": {
"vite": "^5.4.11",
"vitepress": "^1.5.0",
"vitepress-plugin-search": "^1.0.4-alpha.22"
}
}