-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 2.03 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@reach-sh/stdlib",
"version": "0.1.13-rc.3",
"description": "Standard library for Reach Platform",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/browser/reachsdk.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"*.mjs",
"*.d.ts"
],
"devDependencies": {
"@types/await-timeout": "^0.3.1",
"@types/express": "^4.17.1",
"@types/node": "^14.14.34",
"@types/node-fetch": "^2.5.12",
"babel-eslint": "^10.0.3",
"buffer": "^6.0.3",
"concurrently": "^6.0.0",
"crypto-browserify": "^3.12.0",
"eslint": "^7.11.0",
"js-beautify": "^1.13.0",
"js-sha512": "^0.8.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"source-map-loader": "^3.0.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-loader": "^9.2.2",
"typescript": "^4.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"algosdk": "^1.23.2",
"ethers": "^5.7.2",
"hi-base32": "^0.5.1",
"await-timeout": "^0.6.0",
"express": "^4.17.3",
"jsbi": "^3.1.6",
"superagent": "^8.0.3",
"node-fetch": "^2.6.1",
"tslib": "^2.3.1",
"wait-port": "^0.2.9",
"url-parse": "^1.5.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reach-sh/reach-lang.git",
"directory": "js/stdlib"
},
"author": "reach.sh",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reach-sh/reach-lang/issues"
},
"homepage": "https://github.com/reach-sh/reach-lang#readme",
"scripts": {
"beautify": "js-beautify --indent-size=2 --end-with-newline --brace-style=collapse-preserve-inline --replace dist/mjs/*.mjs",
"build": "tsc -p tsconfig-esm.json && concurrently \"webpack --config webpack.config.js\" \"tsc -p tsconfig-cjs.json\"",
"format": "eslint --ext .mjs --fix dist/mjs/",
"runner": "node --experimental-modules --unhandled-rejections=strict runner.mjs",
"webpack": "webpack --config webpack.config.js",
"tsc": "tsc"
}
}