forked from tenequm/solana-idls
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.82 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
68
69
70
71
72
73
74
75
76
77
{
"name": "solana-idls",
"version": "1.2.1",
"description": "Comprehensive Solana IDL database with errors, instructions, and account metadata from 41+ protocols",
"main": "./dist/index.js",
"scripts": {
"build": "tsdown",
"prebuild": "pnpm generate",
"prepublishOnly": "pnpm build",
"dev": "tsdown --watch",
"type-check": "tsc --noEmit",
"generate": "tsx scripts/generate.ts && biome check --write src/generated",
"lint": "biome check",
"check": "pnpm type-check && biome check --write",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"peerDependencies": {
"@coral-xyz/anchor": "^0.31.0"
},
"peerDependenciesMeta": {
"@coral-xyz/anchor": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.3.2",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@types/node": "^22.0.0",
"tsdown": "^0.15.11",
"typescript": "^5.9.3",
"yaml": "^2.8.1",
"zx": "^8.8.5"
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": [
"src/generated/protocols.ts"
],
"license": "MIT",
"keywords": [
"solana",
"idl",
"errors",
"instructions",
"accounts",
"anchor",
"blockchain",
"error-codes",
"debugging",
"web3"
],
"files": [
"dist/**",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/tenequm/solana-idls"
},
"bugs": {
"url": "https://github.com/tenequm/solana-idls/issues"
},
"homepage": "https://github.com/tenequm/solana-idls#readme",
"packageManager": "pnpm@10.20.0"
}