-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.79 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
50
51
52
{
"name": "celer-web-sdk",
"version": "0.8.3",
"description": "JavaScript library to interact with a local Celer node",
"scripts": {
"clean": "rm -rf browser dist tsout demoout",
"compile": "npx tsc -p .",
"bundle:browser": "npx parcel build -d browser --out-file browser.js --global celer src/index.ts",
"bundle:node": "npx parcel build --target node src/index.ts",
"build": "npm run compile && npm run bundle:browser && npm run bundle:node",
"docs": "npx typedoc --name \"Celer Web SDK API Docs\" --out docs --excludePrivate --disableOutputCheck --theme node_modules/typedoc-thunder-theme/bin/default src",
"demo": "npm run build && npx parcel serve -d demoout demo/basic/index.html",
"demo-two": "npm run build && npx parcel serve -d demoout demo/two-accounts/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "https://github.com/celer-network/celer-web-sdk",
"author": {
"name": "Michael Zhou",
"email": "[email protected]"
},
"license": "MIT",
"main": "dist/index.js",
"browser": "browser/browser.js",
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Opera versions",
"last 2 Edge versions"
],
"types": "dist/index.d.ts",
"devDependencies": {
"parcel-bundler": "^1.11.0",
"typedoc": "^0.14.2",
"typedoc-thunder-theme": "0.0.2",
"typescript": "^3.3.1"
},
"dependencies": {
"@improbable-eng/grpc-web": "^0.8.0",
"@improbable-eng/grpc-web-node-http-transport": "0.0.2",
"@types/detect-node": "^2.0.0",
"@types/google-protobuf": "^3.2.7",
"detect-node": "^2.0.4",
"google-protobuf": "^3.7.0-rc.2",
"ts-protoc-gen": "^0.9.0"
},
"files": [
"browser",
"dist",
"README.md"
]
}