-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 798 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 798 Bytes
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
{
"name": "fleetyards-sync",
"displayName": "Fleetyards Sync",
"description": "Browser Extension for syncing pledge data from https://robertsspaceindustries.com to https://fleetyards.net",
"private": true,
"version": "1.2.6",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "vue-tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "wxt prepare"
},
"dependencies": {
"vue": "^3.5.32"
},
"devDependencies": {
"@wxt-dev/module-vue": "^1.0.2",
"typescript": "^6.0.2",
"vitest": "^4.1.4",
"vue-tsc": "^3.2.6",
"wxt": "^0.20.20"
}
}