Files
RJSVM/package.json

57 lines
1.4 KiB
JSON

{
"name": "rjsvm",
"version": "0.4.1",
"description": "",
"main": "lib/src/main.js",
"scripts": {
"clean": "rm -rf lib",
"start": "npm run build && npm run launch",
"build": "npm run clean && npm run tsc && npm run webpack",
"launch": "node lib/launcher.js",
"test": "npm run clean && npm run build && mocha --bail=true lib/test/Test.js",
"tsc": "tsc",
"webpack": "webpack --config ./webpack.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"rjsvm": "^0.4.0",
"xrpio": "^0.4.0",
"xrpl": "^4.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"node-polyfill-webpack-plugin": "^4.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.3",
"@types/chai": "^4.3.6",
"@types/expect": "^1.20.4",
"@types/mocha": "^5.2.7",
"@types/node": "^18.11.9",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"mocha": "^6.2.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.5.0",
"ts-mocha": "^6.0.0",
"typescript": "^4.9.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-utf8-bom": "^1.4.0"
},
"files": [
"lib/src/main.js",
"lib/src/main.d.ts",
"lib/src/util/*",
"lib/browser/rjsvm.browser.js",
"lib/src/RJSVM/*"
]
}