-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "ssc-keys",
"description": "Key operations for web browsers",
"version": "0.0.6",
"main": "index.js",
"type": "module",
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nichoth/ssc-keys.git"
},
"keywords": [
"ssc",
"keys"
],
"author": "nichoth",
"license": "ISC",
"bugs": {
"url": "https://github.com/nichoth/ssc-keys/issues"
},
"homepage": "https://github.com/nichoth/ssc-keys#readme",
"scripts": {
"start": "npm run build-example && npm run serve",
"build-example": "mkdir -p public && browserify -p esmify -dv example/index.js > example/bundle.js",
"serve": "budo example/index.js:bundle.js --dir=example/ --live --pushstate --open -- -p esmify -dv",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"@nichoth/base64pad": "^0.0.1",
"@noble/ed25519": "^1.6.0",
"keystore-idb": "^0.15.5",
"one-webcrypto": "^1.0.3",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"browserify": "^17.0.0",
"budo": "^11.7.0",
"esmify": "^2.1.1"
}
}