-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 927 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
{
"name": "@ponderfinance/dex",
"version": "0.1.35",
"type": "module",
"description": "Core smart contracts for Ponder Protocol",
"files": [
"dist",
"contracts"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./abis": {
"types": "./dist/abis/index.d.ts",
"import": "./dist/abis/index.mjs",
"require": "./dist/abis/index.js"
}
},
"scripts": {
"build": "forge build && pnpm generate && tsup",
"generate": "node --loader ts-node/esm scripts/generate-abis.ts",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@types/node": "^20.0.0",
"ts-node": "^10.9.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
}
}