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
67 lines (67 loc) · 2.07 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.07 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
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
{
"private": true,
"repository": "git@github.com:ourzora/zora-protocol.git",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"build:js": "turbo run build:js",
"test": "turbo run test",
"dev": "turbo run dev",
"docs:preview": "pnpm run --filter docs preview",
"build:docs:coins": "pnpm turbo run 'docs#build:site'",
"build:docs:nft": "pnpm turbo run 'nft-docs#build:site'",
"update-version": "changeset version && pnpm docs:copy-changelogs && turbo run update-contract-version",
"docs:copy-changelogs": "pnpm --filter=docs copy-changelog",
"lint": "turbo run lint",
"format": "turbo run format",
"release": "turbo run build:js && changeset publish",
"changesets": "changesets",
"prepare": "husky install",
"run-lint-staged": "lint-staged"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"eslint": "^8.48.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.4.1",
"tsx": "^4.19.0",
"turbo": "^2.5.3"
},
"name": "zora-protocol",
"lint-staged": {
"*.sol": "prettier --write",
"*.ts": "prettier --write",
"*.js": "prettier --write",
"*.mjs": "prettier --write",
"*.json": "prettier --write"
},
"packageManager": "pnpm@10.19.0+sha512.c9fc7236e92adf5c8af42fd5bf1612df99c2ceb62f27047032f4720b33f8eacdde311865e91c411f2774f618d82f320808ecb51718bfa82c060c4ba7c76a32b8",
"ignore": [
"*.template.sol"
],
"engines": {
"node": ">=22",
"pnpm": ">=3"
},
"pnpm": {
"overrides": {
"viem": "2.22.12",
"@wagmi/cli": "^2.1.0",
"@solidity-parser/parser": "0.19.0",
"ds-test": "https://github.com/dapphub/ds-test#cd98eff28324bfac652e63a239a60632a761790b",
"forge-std": "https://github.com/foundry-rs/forge-std#v1.9.4",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"tsup": "^8.4.0",
"vitest": "^2.1.9",
"elliptic": "^6.6.1",
"ejs": "^3.1.7",
"pbkdf2": "^3.1.3",
"form-data": "^4.0.4",
"braces": "^3.0.3",
"sha.js": "^2.4.12"
}
}
}