-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 968 Bytes
/
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
{
"name": "@drewpackages/engine",
"version": "0.4.0",
"description": "",
"exports": {
"import": "./out/index.mjs",
"require": "./out/index.cjs"
},
"types": "out/index.d.ts",
"type": "module",
"scripts": {
"test": "jest",
"build": "rimraf dist && rollup -c"
},
"author": "",
"license": "ISC",
"dependencies": {
"ethers": "^6.11.1",
"jsonschema": "^1.4.1",
"reflect-metadata": "^0.2.1",
"typedi": "^0.10.0",
"zod": "^3.23.8"
},
"files": [
"out",
"README.md"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.1",
"chai": "^5.1.0",
"jest": "^29.7.0",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"rollup": "^4.14.3",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.3"
}
}