-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 2.34 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
{
"name": "nostr-keyx",
"version": "1.6.0",
"description": "A NIP-07 browser extension that uses the OS's keychain or YubiKey to protect your private keys.",
"private": true,
"type": "module",
"files": [
"dist"
],
"scripts": {
"build-js": "esbuild --bundle --minify --format=esm --outdir=dist/extension src/*.ts src/*.tsx",
"build-node": "esbuild --bundle --format=esm --platform=node --outdir=dist/macos --out-extension:.js=.mjs node/*.ts ; cp -p dist/macos/*.mjs dist/windows ; cp -p dist/macos/*.mjs dist/linux ; cp -p dist/macos/yubikey.sh dist/linux",
"build": "rm -rf dist ; cp -rp public dist ; concurrently \"npm:build-*\"",
"watch-js": "esbuild --watch --bundle --sourcemap=inline --format=esm --outdir=dist/extension src/*.ts src/*.tsx",
"watch-node": "esbuild --watch --bundle --sourcemap=inline --format=esm --platform=node --outdir=dist/macos --out-extension:.js=.mjs node/*.ts",
"watch": "concurrently \"npm:watch-*\"",
"pack": "rm -f *.tgz *.zip ; npm pack ; tar tfz *.tgz | sed -e 's|^package/||' | zip -r@ `ls *.tgz | sed -e 's|\\.tgz|\\.zip|'`",
"genkey": "tsx bin/genkey.ts",
"npub2hex": "tsx bin/npub2hex.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/susumuota/nostr-keyx.git"
},
"keywords": [
"nostr",
"NIP-07",
"chrome-extension",
"browser-extension",
"encryption",
"keychain"
],
"author": "Susumu OTA",
"license": "MIT",
"bugs": {
"url": "https://github.com/susumuota/nostr-keyx/issues"
},
"homepage": "https://github.com/susumuota/nostr-keyx#readme",
"devDependencies": {
"@scure/bip32": "^1.3.0",
"@scure/bip39": "^1.2.0",
"@tsconfig/esm": "^1.0.3",
"@tsconfig/node-lts": "^18.12.1",
"@tsconfig/strictest": "^2.0.1",
"@types/chrome": "^0.0.233",
"@types/node": "^18.16.0",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.10",
"concurrently": "^8.0.1",
"esbuild": "^0.17.18",
"ts-node": "^10.9.1",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.12.1",
"@noble/curves": "^1.0.0",
"@noble/hashes": "^1.3.0",
"@scure/base": "^1.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.3.6"
}
}