-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 KB
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": "@dashevo/evo-sdk",
"version": "3.1.0-dev.1",
"type": "module",
"main": "./dist/evo-sdk.module.js",
"types": "./dist/sdk.d.ts",
"exports": {
".": {
"types": "./dist/sdk.d.ts",
"import": "./dist/evo-sdk.module.js"
},
"./module": {
"import": "./dist/evo-sdk.module.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=18.18"
},
"files": [
"dist/**",
"README.md"
],
"dependencies": {
"@dashevo/wasm-sdk": "workspace:*"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json && webpack --config webpack.config.cjs",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "yarn run test:unit",
"test:unit": "mocha --import ts-node/esm --require tests/bootstrap.cjs tests/unit/**/*.spec.ts && karma start ./tests/karma/karma.conf.cjs --single-run"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.0",
"@types/sinon": "^9.0.4",
"@types/sinon-chai": "^3.2.4",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^9.18.0",
"events": "^3.3.0",
"karma": "^6.4.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"mocha": "^11.1.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"sinon": "^18.0.1",
"sinon-chai": "^3.7.0",
"string_decoder": "^1.3.0",
"terser-webpack-plugin": "^5.3.11",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"url": "^0.11.3",
"util": "^0.12.4",
"webpack": "^5.104.0",
"webpack-cli": "^4.9.1"
}
}