-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
{
"name": "@devanshraulo/webnetstack",
"version": "0.1.1",
"description": "Linux-only browser SDK and packaged host bridge for webnetstack",
"type": "module",
"main": "./index.node.js",
"bin": "./cli/webnetstack.mjs",
"exports": {
".": {
"node": "./index.node.js",
"default": "./sdk/webnetstack.js"
},
"./node": "./lib/start-host.js",
"./sdk": "./sdk/webnetstack.js"
},
"files": [
"bin/webnetstack-host",
"cli/webnetstack.mjs",
"index.node.js",
"lib/start-host.js",
"sdk/webnetstack.js",
"sdk/README.md",
"README.md"
],
"os": [
"linux"
],
"license": "MIT",
"author": "devansh0703 <151062727+devansh0703@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/devansh0703/webnetstack.git"
},
"bugs": {
"url": "https://github.com/devansh0703/webnetstack/issues"
},
"homepage": "https://github.com/devansh0703/webnetstack#readme",
"publishConfig": {
"access": "public"
},
"keywords": [
"networking",
"browser",
"sdk",
"websocket"
],
"scripts": {
"build:host": "cargo build --release --bin webnetstack-host",
"stage:host": "node ./tools/stage-npm-binary.mjs",
"prepack": "npm run build:host && npm run stage:host",
"test:js": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand"
},
"devDependencies": {
"jest": "^30.2.0"
},
"jest": {
"testEnvironment": "node"
}
}