-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.34 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
{
"name": "event-plugin",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && mv dist/landing.html dist/index.html && touch dist/.nojekyll",
"preview": "pnpm build && run-p preview:plugin dev",
"preview:plugin": "vite preview --port 3007",
"test": "vitest",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --fix"
},
"dependencies": {
"@heroicons/vue": "^2.2.0",
"@toplocs/plugin-sdk": "^1.1.0",
"gun": "^0.2020.1240",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@originjs/vite-plugin-federation": "^1.4.0",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.16.11",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/eslint-plugin": "1.1.7",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.0.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.12.0",
"eslint-plugin-vue": "^9.29.0",
"jsdom": "^25.0.1",
"npm-run-all2": "^6.2.3",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14",
"typescript": "~5.5.4",
"vite": "^5.4.8",
"vite-plugin-top-level-await": "^1.4.4",
"vitest": "^2.1.2",
"vue-tsc": "^2.1.6"
}
}