forked from Such-Software/smirk-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.38 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.38 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
{
"name": "smirk-extension",
"version": "0.1.6",
"description": "Non-custodial multi-currency tip wallet browser extension",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"build:chrome": "vite build && cp manifest.json dist/",
"build:firefox": "vite build && cp manifest.firefox.json dist/manifest.json",
"zip:chrome": "npm run build:chrome && cd dist && zip -r ../smirk-wallet-chrome-v$npm_package_version.zip .",
"zip:firefox": "npm run build:firefox && cd dist && zip -r ../smirk-wallet-firefox-v$npm_package_version.zip .",
"release": "./scripts/release.sh",
"bump": "./scripts/bump-version.sh",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/node": "^25.0.4",
"@types/uuid": "^10.0.0",
"typescript": "^5.4.0",
"vite": "^5.4.0",
"vitest": "^1.6.0"
},
"dependencies": {
"@noble/ciphers": "^0.5.0",
"@noble/curves": "^1.4.0",
"@noble/hashes": "^1.4.0",
"@scure/base": "^2.0.0",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"@scure/btc-signer": "^2.0.1",
"bech32": "^2.0.0",
"bignumber.js": "^9.3.1",
"bs58": "^6.0.0",
"crc-32": "^1.2.2",
"hi-base32": "^0.5.1",
"js-sha256": "^0.11.1",
"preact": "^10.19.0",
"uuid": "^13.0.0"
}
}