-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "@zoralabs/protocol-sdk",
"version": "0.11.3",
"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 tsup",
"prepack": "pnpm build",
"test:js": "vitest src",
"test:integration": "vitest test-integration",
"generate-types": "echo 'npx is used here because this is a rare operation' && npx openapi-typescript https://api.zora.co/premint/openapi.json -o src/apis/generated/premint-api-types.ts",
"prettier:write": "prettier --write 'src/**/*.ts' 'test-integration/**/*.ts'",
"lint": "prettier --check 'src/**/*.ts' 'test-integration/**/*.ts'"
},
"dependencies": {
"@zoralabs/protocol-deployments": "workspace:^",
"abitype": "^1.0.2"
},
"peerDependencies": {
"viem": "^2.21.21"
},
"devDependencies": {
"@lavamoat/preinstall-always-fail": "2.0.0",
"@reservoir0x/relay-sdk": "^0.3.8",
"@reservoir0x/reservoir-sdk": "^2.0.11",
"@types/node": "^20.13.0",
"@types/semver": "^7.5.8",
"@zoralabs/tsconfig": "workspace:^",
"graphql-prettier": "^1.0.6",
"multiformats": "^13.2.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"semver": "^7.6.3",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^2.0.5"
}
}