-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.88 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@hypercerts-org/sdk",
"version": "2.1.1",
"description": "SDK for hypercerts protocol",
"repository": "git@github.com:hypercerts-org/hypercerts-sdk.git",
"author": "Hypercerts team",
"license": "Apache-2.0",
"source": "src/index.ts",
"typedocMain": "src/index.ts",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs"
},
"files": [
"dist",
"README.md",
"package.json"
],
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"@hypercerts-org/contracts": "2.0.0-alpha.9",
"@openzeppelin/merkle-tree": "^1.0.7",
"@swc/core": "^1.6.3",
"ajv": "^8.11.2",
"axios": "^1.7.2",
"dotenv": "^16.0.3",
"rollup-plugin-swc3": "^0.11.2",
"viem": "^2.15.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.9.0",
"@faker-js/faker": "^8.3.1",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/chai": "^4.3.11",
"@types/chai-subset": "^1.3.5",
"@types/node": "^20.12.2",
"@types/sinon": "^17.0.2",
"@viem/anvil": "^0.0.6",
"chai": "^4.3.7",
"chai-assertions-count": "^1.0.2",
"chai-subset": "^1.6.0",
"esbuild": "^0.19.8",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"json-schema-to-typescript": "^13.1.1",
"lint-staged": "^15.2.9",
"orval": "^6.30.2",
"prettier": "3.3.3",
"rollup": "^3.29.4",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"sinon": "^17.0.1",
"typescript": "5.4.5",
"typescript-eslint": "^8.2.0",
"vitest": "^1.6.0"
},
"scripts": {
"build": "pnpm types:json && pnpm codegen:api && rollup -c",
"codegen:api": "npx orval --input ./lib/hypercerts-api/src/__generated__/swagger.json --output ./src/__generated__/api.ts",
"clean": "rm -rf ./dist",
"prebuild": "pnpm clean",
"prepack": "pnpm build",
"update:submodules": "git submodule update --init --recursive",
"test": "vitest run",
"test:watch": "vitest --watch",
"types:json": "pnpm json2ts -i './src/resources/schema/' -o 'src/types' --cwd './src/resources/schema'",
"prepare": "husky",
"commitlint": "commitlint --config commitlintrc.ts --edit"
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write --ignore-unknown"
]
},
"packageManager": "pnpm@9.2.0+sha256.94fab213df221c55b6956b14a2264c21c6203cca9f0b3b95ff2fe9b84b120390"
}