-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 KB
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
55
56
57
58
{
"name": "@rotki/docs",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.33.0",
"description": "rotki's user guide and facing documentation",
"type": "module",
"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 <info@rotki.com>",
"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": "6.0.5",
"vue": "3.5.31"
},
"devDependencies": {
"@rotki/eslint-config": "5.0.1",
"@rotki/eslint-plugin": "1.3.2",
"@types/node": "24.10.13",
"@vue/compiler-sfc": "3.5.31",
"@vue/runtime-dom": "3.5.31",
"cheerio": "1.2.0",
"eslint": "9.39.4",
"husky": "9.1.7",
"image-size": "2.0.2",
"lint-staged": "16.4.0",
"markdown-it": "14.1.1",
"papaparse": "5.5.3",
"url": "0.11.4",
"vitepress": "1.6.4",
"vitepress-plugin-llms": "1.12.0",
"vitepress-plugin-tabs": "0.8.0"
},
"engines": {
"node": ">=24 <25",
"pnpm": ">=10 <11"
},
"lint-staged": {
"*.{js,ts,vue,json,yml,md}": "eslint"
}
}