-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "@audius/hedgehog",
"version": "2.1.0",
"description": "A Metamask alternative that empowers you to build good UX",
"browser": {
"node-localstorage": false
},
"dependencies": {
"bip39": "3.0.4",
"browserify-cipher": "1.0.1",
"ethereumjs-wallet": "1.0.2",
"node-localstorage": "2.2.1",
"randombytes": "2.1.0",
"safe-buffer": "5.2.1"
},
"devDependencies": {
"@tsconfig/node16-strictest": "1.0.3",
"@types/node": "18.6.1",
"@types/randombytes": "2.0.0",
"mocha": "10.0.0",
"rollup": "2.77.1",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-typescript2": "0.32.1",
"standard": "17.0.0",
"ts-mocha": "10.0.0",
"typescript": "4.7.4"
},
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"lint": "standard",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc",
"test": "ts-mocha tests"
},
"standard": {
"globals": [
"Blob",
"self",
"Worker",
"postMessage",
"describe",
"it",
"beforeEach"
]
},
"author": "",
"license": "MIT"
}