forked from graphprotocol/grc-20-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 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
{
"name": "@graphprotocol/grc-20",
"version": "0.26.0",
"license": "MIT",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"ascMain": "./dist/index.js",
"type": "module",
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./proto": "./dist/proto.js",
"./contracts": "./dist/contracts.js",
"./abis": "./dist/abis.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"test": "vitest",
"generate:protobuf": "npx buf generate",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe",
"deploy": "pnpm clean && pnpm build && pnpm changeset publish",
"bump": "pnpm changeset version"
},
"dependencies": {
"@bufbuild/protobuf": "^1.9.0",
"effect": "^3.17.13",
"fflate": "^0.8.2",
"fractional-indexing-jittered": "^1.0.0",
"image-size": "^2.0.2",
"permissionless": "^0.2.35",
"uuid": "^13.0.0",
"viem": "^2.37.6"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@bufbuild/buf": "^1.31.0",
"@bufbuild/protoc-gen-es": "^1.9.0",
"@changesets/cli": "^2.29.7",
"@types/uuid": "^11.0.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.5.2",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome"
]
}
}