forked from ourzora/zora-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.15 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
{
"name": "@zoralabs/protocol-deployments",
"version": "0.3.9",
"repository": "https://github.com/ourzora/zora-protocol",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"scripts": {
"build": "pnpm bundle-configs && pnpm copy-generated && tsup",
"bundle-configs": "tsx scripts/bundle-configs.ts && pnpm prettier:write",
"copy-generated": "cp ../protocol-deployments-gen/generated/wagmi.ts src/generated/wagmi.ts",
"prettier:write": "prettier --write 'src/**/*.ts' 'scripts/*'",
"lint": "prettier --check 'src/**/*.ts' 'scripts/*'"
},
"devDependencies": {
"@lavamoat/preinstall-always-fail": "2.0.0",
"@types/node": "^20.3.2",
"@zoralabs/tsconfig": "workspace:^",
"abitype": "^1.0.2",
"es-main": "^1.2.0",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.1.3",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"viem": "^2.21.21"
}
}