-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
63 lines (63 loc) · 2.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "tldr.inbrowser.app",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run download:tldr-pages && npm run build:sitemap && run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"download:tldr-pages": "wget -O public/tldr-pages.zip https://github.com/tldr-pages/tldr/archive/refs/heads/main.zip",
"build:sitemap": "node scripts/build-sitemap.js"
},
"dependencies": {
"@zip.js/zip.js": "^2.6.61",
"pinia": "^2.0.28",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^20.0.1",
"@types/langmap": "^0.0.1",
"@types/marked": "^4.0.8",
"@types/node": "^18.11.12",
"@vicons/antd": "^0.12.0",
"@vicons/carbon": "^0.12.0",
"@vicons/fa": "^0.12.0",
"@vicons/fluent": "^0.12.0",
"@vicons/ionicons4": "^0.12.0",
"@vicons/ionicons5": "^0.12.0",
"@vicons/material": "^0.12.0",
"@vicons/tabler": "^0.12.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.2.6",
"@vue/tsconfig": "^0.1.3",
"@vueuse/core": "^9.9.0",
"@vueuse/head": "^1.0.22",
"@vueuse/router": "^9.10.0",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"jsdom": "^20.0.3",
"jszip": "^3.10.1",
"langmap": "^0.0.16",
"marked": "^4.2.5",
"naive-ui": "^2.34.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"sass": "^1.57.1",
"typescript": "~4.7.4",
"user-agent-data-types": "^0.3.0",
"vite": "^4.0.0",
"vite-plugin-pwa": "^0.14.0",
"vitest": "^0.25.6",
"vue-gtag": "^2.0.1",
"vue-tsc": "^1.0.12"
}
}