-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.26 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "web-extension",
"private": true,
"version": "0.5.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"package": "npm run build && cd build && zip -r ../extension.zip ./*",
"package:dev": "npm run build && cd build && zip -r ../extension-dev.zip ./*",
"validate": "npm run lint && npm run check && npm run build",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags",
"setup-cicd": "bash scripts/setup-cicd.sh"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@sveltejs/adapter-auto": "^6.0.0",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/vite": "^4.0.0",
"@types/chrome": "^0.0.317",
"@types/crypto-js": "^4.2.2",
"@types/qrcode": "^1.5.5",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"sveltekit-adapter-chrome-extension": "^2.0.1",
"tailwindcss": "^4.0.0",
"terser": "^5.43.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.20.0",
"vite": "^6.2.6",
"vite-plugin-node-polyfills": "^0.23.0"
},
"dependencies": {
"@fontsource-variable/dm-sans": "^5.2.5",
"@jup-ag/api": "^6.0.44",
"@lucide/svelte": "^0.503.0",
"@metaplex-foundation/mpl-token-metadata": "^3.4.0",
"@metaplex-foundation/umi": "^1.2.0",
"@metaplex-foundation/umi-bundle-defaults": "^1.2.0",
"@solana/kit": "^2.1.1",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.2",
"bcryptjs": "^3.0.2",
"bip39": "^3.1.0",
"bits-ui": "^1.4.2",
"buffer": "^6.0.3",
"crypto-js": "^4.2.0",
"ed25519-hd-key": "^1.3.0",
"ethers": "^6.14.0",
"qrcode": "^1.5.4"
}
}