-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.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
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
{
"name": "@perennial/sdk",
"version": "0.0.3-beta.12",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"packageManager": "pnpm@9.1.3",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist cache artifacts",
"build": "pnpm run clean && pnpm run gen:lens-artifact && pnpm run gen:error-abi && pnpm run gen:gql-typings && pnpm exec tsc -p tsconfig.build.json",
"build:watch": "nodemon --exec 'pnpm exec tsc -p tsconfig.build.json' --watch src/ -e ts --ignore src/abi/",
"prepublishOnly": "pnpm install && pnpm run build",
"gen:lens-artifact": "pnpm exec hardhat compile && node ./scripts/lensAbiCopy.js && prettier --write ./src/abi/*Lens.abi.ts",
"gen:error-abi": "ts-node ./scripts/genErrorAbi.ts && prettier --write ./src/abi/AllErrors.abi.ts",
"gen:gql-typings": "graphql-codegen --config graph-codegen.ts",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"lint": "eslint --ext .ts src/",
"precommit": "pnpm exec lint-staged",
"prepush": "pnpm run build",
"prepare": "husky",
"build:docs": "typedoc --options typedoc.config.cjs"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@chainlink/contracts": "^0.6.1",
"@equilibria/root": "2.3.0-rc8",
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/client-preset": "^3.0.1",
"@graphql-typed-document-node/core": "^3.2.0",
"@openzeppelin/contracts": "4.8.0",
"@perennial/core": "1.3.0-rc1",
"@perennial/oracle": "1.3.0-rc3",
"@perennial/vault": "1.3.0-rc1",
"@perennial/verifier": "1.3.0-rc1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"abitype": "^1.0.2",
"dotenv": "^16.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"hardhat": "^2.17.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.13",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "5.4.3"
},
"dependencies": {
"@microsoft/tsdoc": "^0.14.2",
"@pythnetwork/hermes-client": "^1.0.4",
"axios": "^1.7.2",
"date-fns": "^2.30.0",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"viem": "2.9.9"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}