forked from woodser/monero-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.94 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "monero-ts",
"description": "A TypeScript library for using Monero",
"version": "0.9.7",
"license": "MIT",
"repository": "https://github.com/MoreloNetwork/monero-ts",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "todo",
"build_web_worker": "webpack --config ./webpack.worker.js",
"build_web_tests": "webpack --config ./webpack.tests.js",
"test": "npm run build_commonjs && node --enable-source-maps --no-experimental-fetch node_modules/mocha/bin/_mocha --require @babel/register \"dist/src/test/TestAll\" --timeout 900000000 --exit",
"typedoc": "typedoc ./index.ts --out ./docs/typedocs --excludePrivate --disableSources",
"build_commonjs": "babel ./src --extensions \".js,.ts\" --out-dir ./dist/src && babel ./index.ts --extensions \".ts\" --out-dir ./dist && shx mkdir -p dist/dist && shx cp dist/monero_wallet_full.js dist/monero_wallet_keys.js dist/dist && shx cp dist/*.js.map dist/dist && shx cp dist/*.wasm dist/dist",
"check_babel_version": "babel -V"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "MoreloNetwork",
"repo": "monero-ts"
}
]
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@babel/runtime": "^7.23.2",
"@types/node": "^20.6.0",
"ajv": "^6.12.6",
"async": "2.6.4",
"crypto-js": "^4.0.0",
"html5-fs": "0.1.1",
"net": "^1.0.2",
"promise-throttle": "^1.1.2",
"request": "^2.88.0",
"request-promise": "^4.2.6",
"serialize-javascript": "^3.1.0",
"text-encoding": "^0.7.0",
"tls": "0.0.1",
"uuid": "3.3.2",
"web-worker": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.22.17",
"@babel/node": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@babel/register": "^7.22.15",
"@types/jquery": "^3.5.19",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"assert": "^2.1.0",
"babel-loader": "^9.1.3",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"https-browserify": "^1.0.0",
"memfs": "^4.2.1",
"mocha": "^9.1.3",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"shx": "^0.3.4",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2",
"url": "^0.11.2",
"util": "^0.12.5",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
}
}