-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "@hyper-hyper-space/node-env",
"description": "Node support for hyperhyperspace-core.",
"version": "0.12.0",
"author": "Santiago Bazerque",
"license": "MIT",
"source": "src/NodeEnvironment.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "decl/NodeEnvironment.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/hyperhyperspace/hyperhyperspace-node-env.git"
},
"scripts": {
"build": "npx microbundle-crl && npx tsc --declaration --outDir ./decl",
"clean": "rm -rf ./decl/* ./dist/*",
"winclean": "if exist decl (rmdir decl /s /q) && mkdir decl && if exist dist (rmdir dist /s /q) && mkdir dist"
},
"dependencies": {
"atob": "^2.1.2",
"btoa": "^1.2.1",
"fake-indexeddb": "^3.1.2",
"ws": "^7.4.0",
"@peculiar/webcrypto": "^1.1.6"
},
"optionalDependencies": {
"wrtc": "^0.4.7"
},
"devDependencies": {
"@types/ws": "^7.2.7",
"microbundle-crl": "^0.13.11",
"typescript": "^4.0.3"
},
"peerDependencies": {
"tslib": "^2.0.1"
}
}