-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "@rotki/docs",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "rotki's user guide and facing documentation",
"keywords": [
"static",
"documentation",
"rotki"
],
"license": "AGPL-3.0",
"homepage": "https://docs.rotki.com",
"bugs": {
"url": "https://github.com/rotki/docs/issues"
},
"repository": "https://github.com/rotki/docs",
"author": "Rotki Solutions GmbH <[email protected]>",
"main": "index.js",
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"lint": "eslint .",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@vitejs/plugin-vue": "5.1.4",
"vue": "3.5.12"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@rotki/eslint-config": "3.4.0",
"@types/node": "20.17.6",
"@vue/compiler-sfc": "3.5.12",
"@vue/runtime-dom": "3.5.12",
"eslint": "9.14.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"papaparse": "5.4.1",
"url": "0.11.4",
"vitepress": "1.5.0",
"vitepress-plugin-tabs": "0.5.0"
},
"engines": {
"node": ">=20 <21",
"pnpm": ">=9 <10"
},
"lint-staged": {
"*.{js,ts,vue,json,yml,md}": "eslint"
}
}