-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.02 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
70
71
{
"name": "@browser-network/crypto",
"version": "0.0.4",
"description": "Browser-compatible cryptographic helpers for Browser Network",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"engines": {
"node": ">=22.15.0"
},
"files": [
"dist/**/*",
"umd/**/*"
],
"scripts": {
"test": "tap --disable-coverage test/*.ts",
"clean": "shx rm -rf dist build umd; shx mkdir umd",
"compile:ts": "tsc",
"compile:pack": "rollup --config rollup.config.mjs",
"compile:pack:min": "echo 'Minified UMD output is produced by compile:pack'",
"build": "npm run clean; npm-run-all compile:**",
"build:watch": "nodemon -e ts,json -i dist -i build -i umd -x 'npm run compile:ts && npm run compile:pack'",
"start:dev": "node serve.js & npm run build:watch",
"release": "npm run build && np --no-cleanup --no-tests --no-yarn --message=\"New release! Version: %s\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/browser-network/crypto.git"
},
"publishConfig": {
"access": "public"
},
"author": "Aaron Sullivan (aasullivan1618@gmail.com)",
"homepage": "https://github.com/browser-network/crypto#readme",
"keywords": [
"distributed",
"browser",
"network",
"decentralized",
"peer",
"p2p",
"webrtc",
"crypto",
"cryptographic"
],
"license": "MIT",
"dependencies": {
"@noble/ciphers": "1.3.0",
"@noble/curves": "1.9.7",
"@noble/hashes": "1.8.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "29.0.3",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-terser": "1.0.0",
"@rollup/plugin-typescript": "12.3.0",
"@tapjs/typescript": "3.5.11",
"@types/node": "22.15.34",
"@types/tap": "^15.0.6",
"nodemon": "3.1.14",
"np": "12.0.1",
"npm-run-all": "^4.1.5",
"rollup": "4.63.0",
"shx": "0.4.0",
"tap": "21.7.5",
"tap-spec": "^5.0.0",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.9.3"
}
}