-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 959 Bytes
/
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
{
"name": "sofast-extension-template",
"title": "Sofast Extension Template",
"author": "Blushyes",
"commands": [
{
"name": "greet",
"title": "打个招呼"
},
{
"name": "sayHello",
"title": "Say Hello"
}
],
"description": "A template for creating a Sofast extension",
"categroies": [
"template"
],
"private": true,
"version": "0.0.1-snapshot",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"vite-plugin-css-injected-by-js": "^3.5.2",
"vue": "^3.4.37"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^22.7.4",
"@vitejs/plugin-vue": "^5.1.2",
"autoprefixer": "^10.4.20",
"glob": "^11.0.0",
"rollup-plugin-copy-assets": "^2.0.3",
"tailwindcss": "^3.4.13",
"typescript": "^5.5.3",
"vite": "^5.4.1",
"vue-tsc": "^2.0.29"
}
}