-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
111 lines (111 loc) · 3.91 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "sheikah-witnet-wallet",
"version": "1.12.1",
"type": "module",
"private": true,
"description": "A Witnet compatible desktop wallet interface and data requests development environment.",
"author": "Witnet Foundation <info@witnet.foundation>",
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && electron-builder",
"preview": "vite preview",
"test": "pnpm test:unit",
"lint": "pnpm lint:fix:eslint && pnpm lint:fix:prettier",
"ci": "pnpm lint:check && pnpm test && pnpm electron:build --publish=never",
"clean": "pnpm clean-deps && rm -rf dist_electron",
"clean-deps": "rm -rf node_modules",
"electron:build": "vue-cli-service electron:build",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten",
"electron:serve": "vue-cli-service electron:serve",
"electron:serve:wallet": "vue-cli-service electron:serve --wallet",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|ts|vue)' --locales './src/locales/**/*.json'",
"lint:check": "pnpm lint:check:eslint && pnpm lint:check:prettier",
"lint:check:eslint": "pnpm lint:eslint",
"lint:check:prettier": "pnpm lint:prettier --check \"**/*.{ts,js,json,css,scss,vue,html}\"",
"lint:eslint": "eslint",
"lint:fix:eslint": "pnpm lint:eslint --fix",
"lint:fix:prettier": "pnpm lint:prettier --write \"**/*.{ts,js,json,css,scss,vue,html}\"",
"lint:prettier": "prettier --loglevel warn",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"reinstall": "pnpm clean-deps && pnpm",
"test:unit": "vitest"
},
"main": "dist-electron/main/index.js",
"bugs": {
"url": "https://github.com/witnet/sheikah/issues"
},
"license": "GPL-3.0",
"productName": "Sheikah-Witnet-wallet",
"repository": {
"type": "git",
"url": "git+https://github.com/witnet/sheikah.git"
},
"volta": {
"node": "20.9.0"
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@intlify/unplugin-vue-i18n": "^3.0.1",
"@rushstack/eslint-patch": "^1.10.4",
"@types/node": "^20.16.11",
"@typescript-eslint/parser": "^8.9.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.1.1",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^11.1.0",
"autoprefixer": "^10.4.20",
"axios": "^1.7.7",
"big.js": "^6.2.2",
"cbor2": "^1.7.0",
"date-fns": "^3.6.0",
"electron": "^33.0.0",
"electron-builder": "^25.1.8",
"electron-devtools-installer": "^3.2.0",
"electron-log": "^5.2.0",
"electron-updater": "^6.3.9",
"element-plus": "^2.8.5",
"eslint": "^9.12.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-vue": "9.29.0",
"fs-extra": "^11.2.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"prettier": "3.3.3",
"progress-stream": "^2.0.0",
"qrcode.vue": "^3.5.0",
"rpc-websockets": "^7.11.2",
"sass": "^1.79.5",
"semver": "^7.6.3",
"tar": "^6.2.1",
"tree-kill": "^1.2.2",
"typescript": "^5.6.3",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.9",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-electron-renderer": "^0.14.6",
"vite-svg-loader": "^5.1.0",
"vitest": "^1.6.0",
"vue": "3.5.12",
"vue-i18n": "^9.14.1",
"vue-json-tree": "^0.4.3",
"vue-observe-visibility": "^1.0.0",
"vue-router": "^4.4.5",
"vue-tsc": "^2.1.6",
"vuex": "^4.1.0",
"witnet-radon-js": "^0.11.0",
"witnet-requests": "^0.9.13"
}
}