-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "md-document",
"version": "0.0.0",
"type": "module",
"main": "./src/plugin.ts",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force"
},
"dependencies": {
"glob": "^11.0.0",
"readdirp": "^4.0.2",
"vue": "^3.4.29",
"vue-router": "^4.3.3"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.16.11",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"fs-extra": "^11.2.0",
"jsdom": "^24.1.0",
"marked": "^14.1.2",
"npm-run-all2": "^6.2.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"sass": "^1.79.5",
"sass-loader": "^16.0.2",
"typescript": "~5.4.0",
"vite": "^5.3.1",
"vite-plugin-restart": "^0.4.1",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.21"
}
}