-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.81 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "slax-reader",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky",
"dev": "tsx scripts/start.script.ts",
"dev:extensions": "pnpm --F @apps/slax-reader-extensions run dev",
"dev:dweb": "pnpm --F @apps/slax-reader-dweb run dev",
"build:dweb": "pnpm --F @apps/slax-reader-dweb run build",
"build:extensions": "pnpm --F @apps/slax-reader-extensions run build",
"build:extensions:zip": "pnpm --F @apps/slax-reader-extensions run zip",
"lint": "eslint .",
"inspect:deps": "node-modules-inspector"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"dependencies": {
"@commons/types": "workspace:*",
"@commons/utils": "workspace:*",
"@iconify-json/ic": "^1.2.4",
"@iconify-json/logos": "^1.2.9",
"@iconify-json/solar": "^1.2.4",
"@iconify-json/svg-spinners": "^1.2.4",
"@unocss/preset-attributify": "^66.5.2",
"@unocss/preset-icons": "^66.5.2",
"@unocss/reset": "^66.5.2",
"@vscode/markdown-it-katex": "^1.1.2",
"@vueuse/components": "^13.9.0",
"@vueuse/core": "^13.9.0",
"@vueuse/integrations": "^13.9.0",
"dompurify": "^3.2.7",
"easy-dom2img": "^1.0.2",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0",
"markdown-it-link-attributes": "^4.0.1",
"markmap-common": "^0.18.9",
"markmap-lib": "^0.18.12",
"markmap-view": "^0.18.12",
"mermaid-it-markdown": "^1.0.10",
"ua-parser-js": "^2.0.8",
"unocss": "^66.5.2",
"vue": "^3.5.22"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-link-attributes": "^3.0.5",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@unocss/eslint-config": "^66.5.2",
"@unocss/eslint-plugin": "^66.5.2",
"@unocss/preset-mini": "^66.5.2",
"@unocss/preset-rem-to-px": "^66.5.2",
"@unocss/transformer-directives": "^66.5.2",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"colorette": "^2.0.20",
"dotenv": "^17.2.2",
"eslint": "^9.36.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-vue": "^10.5.0",
"eslint-plugin-vue-scoped-css": "^2.12.0",
"execa": "^9.6.0",
"husky": "^9.1.7",
"inquirer": "^12.9.6",
"node-modules-inspector": "^1.1.1",
"prettier": "^3.6.2",
"terser": "^5.44.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"zod": "^4.1.11"
},
"pnpm": {
"overrides": {
"@intlify/message-compiler": "^10.0.0"
}
}
}