-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.84 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
48
49
50
51
52
53
{
"name": "nom-wallet",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --config vite.config.web.ts",
"dev:extension": "vite build --watch --mode development --config vite.config.extension.ts",
"build": "vite build --config vite.config.web.ts",
"build:extension": "vite build --config vite.config.extension.ts",
"package:extension": "npm run build:extension && node scripts/package-extension.mjs",
"preview": "vite preview --config vite.config.web.ts",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,vue,json,md}\"",
"test": "echo \"No automated tests configured. Run 'npm run typecheck' and 'npm run lint'.\" && exit 0"
},
"dependencies": {
"@vueuse/core": "^14.2.0",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"buffer": "^6.0.3",
"lucide-vue-next": "^0.563.0",
"nom-ui": "github:digitalSloth/nom-ui",
"vue": "^3.4.0",
"vue-router": "^4.2.0",
"znn-typescript-sdk": "^1.0.5"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.23",
"@iconify-json/radix-icons": "^1.2.6",
"@iconify/vue": "^5.0.0",
"@tailwindcss/vite": "^4.1.18",
"@types/chrome": "^0.0.260",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/eslint-config-typescript": "^14.6.0",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.7.0",
"prettier": "^3.2.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.0.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.0",
"vite": "^7.3.1",
"vite-plugin-node-polyfills": "^0.25.0",
"vue-tsc": "^3.3.3"
}
}