-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
125 lines (125 loc) · 4.14 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "dequanto",
"version": "0.1.24",
"author": {
"name": "Alex Kit",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/0xweb-org/dequanto"
},
"exports": {
"./*": {
"import": "./lib/esm/*.mjs",
"types": "./lib/types/*.d.ts",
"require": "./lib/cjs/*.js"
}
},
"scripts": {
"hardhat": "node --openssl-legacy-provider ./node_modules/hardhat/internal/cli/cli.js node --hostname 127.0.0.1 --verbose",
"build:tsc": "tsc -p tsconfig-src.json",
"build": "app-bundler",
"build-cjs": "app-bundler --app cjs",
"build-esm": "app-bundler --app esm",
"build-types": "tsc -p tsconfig-src.json && atma run tools/copy-dts",
"create-config": "atma run ./tools/copy-config.ts",
"watch": "app-bundler --watch",
"server": "atma server --TEST",
"test": "atma --openssl-legacy-provider test --config='settings.base=./' --TEST",
"test-node": "atma --openssl-legacy-provider test node --config='settings.base=./' --TEST",
"contracts": "atma act ./actions/contracts.act.ts",
"typecheck": "tsc --project tsconfig-src.json --noEmit",
"release": "atma bump && npm run build && git add -A && git commit -am 'bump' && git push && git push origin master:release"
},
"devDependencies": {
"@0xweb/hardhat": "^0.1.15",
"@gnosis.pm/safe-contracts": "^1.3.0",
"@openzeppelin/contracts": "^4.9.3",
"@types/node": "^20.12.11",
"@types/sinon": "^10.0.13",
"app-bundler": "^0.2.13",
"atma": "^0.15.22",
"atma-io-middleware-base": "^1.0.51",
"atma-io-middleware-importer": "^1.1.38",
"atma-io-middleware-uglify": "^1.1.25",
"atma-loader-ts": "^1.2.6",
"atma-utest": "^0.21.30",
"dts-bundle": "^0.7.3",
"ethers": "^5.5.1",
"hardhat": "^2.19.2",
"shellbee": "^0.5.29",
"ts-nameof": "^5.0.0",
"typescript": "^5.3.3",
"web3": "^1.6.0"
},
"dependencies": {
"@everlog/core": "^1.0.17",
"@noble/curves": "^1.2.0",
"@noble/hashes": "^1.3.2",
"@scure/bip32": "^1.3.2",
"@scure/bip39": "^1.2.1",
"@solidity-parser/parser": "^0.16.0",
"a-di": "^1.0.29",
"alot": "^0.3.12",
"appcfg": "^0.5.4",
"atma-io": "^1.3.4",
"atma-utils": "^0.2.65",
"class-json": "^0.4.1",
"includejs": "^0.17.6",
"memd": "^0.3.15",
"ws": "^8.16.0"
},
"app-bundler": {
"config": "package-bundler.json"
},
"atma": {
"configs": "./configs/**.yml",
"plugins": [
"atma-loader-ts",
"atma-io-middleware-importer"
],
"settings": {
"io": {
"middlewares": {
"yml": [
"atma-io-middleware-yml:read"
]
}
},
"atma-io": {
"middlewares": {
"yml": [
"atma-io-middleware-yml:read"
]
}
},
"include": {
"amd": true,
"extentionDefault": {
"js": "ts"
},
"routes": "#import ./tsconfig-build.json compilerOptions.paths",
"map": {}
},
"atma-loader-ts": {
"sourceMap": true,
"typescript": {
"compilerOptions": {
"module": "AMD",
"moduleResolution": "Node",
"experimentalDecorators": true,
"target": "ES2022",
"lib": [
"dom",
"ES2022"
],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
}
}
}
}
}
}