-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.86 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@codama/spec",
"version": "1.7.0-rc.0",
"description": "The canonical Codama node specification and meta-model",
"keywords": [
"codama",
"solana",
"spec",
"specifications",
"standard"
],
"bugs": {
"url": "https://github.com/codama-idl/spec/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codama-idl/spec"
},
"files": [
"./dist/types",
"./dist/index.*",
"./dist/api.*",
"./dist/v1.*"
],
"type": "commonjs",
"sideEffects": false,
"main": "./dist/index.node.cjs",
"module": "./dist/index.node.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"browser": {
"import": "./dist/index.browser.mjs",
"require": "./dist/index.browser.cjs"
},
"node": {
"import": "./dist/index.node.mjs",
"require": "./dist/index.node.cjs"
}
},
"./api": {
"types": "./dist/types/api/index.d.ts",
"browser": {
"import": "./dist/api.browser.mjs",
"require": "./dist/api.browser.cjs"
},
"node": {
"import": "./dist/api.node.mjs",
"require": "./dist/api.node.cjs"
}
},
"./v1": {
"types": "./dist/types/v1/index.d.ts",
"browser": {
"import": "./dist/v1.browser.mjs",
"require": "./dist/v1.browser.cjs"
},
"node": {
"import": "./dist/v1.node.mjs",
"require": "./dist/v1.node.cjs"
}
}
},
"scripts": {
"build": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json",
"dev": "vitest",
"generate": "pnpm build && tsx generators/index.ts",
"lint": "oxlint && oxfmt --check .",
"lint:fix": "oxlint --fix && oxfmt .",
"test": "pnpm test:types && pnpm test:unit",
"test:types": "tsc --noEmit",
"test:unit": "vitest run"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@solana-config/oxc": "^0.1.1",
"@types/node": "^25",
"oxfmt": "^0.55.0",
"oxlint": "^1.66.0",
"oxlint-tsgolint": "^0.23.0",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.33.3",
"pnpm": {
"ignoredBuiltDependencies": [
"esbuild",
"unrs-resolver"
]
},
"codama": {
"spec": "1.6.0"
}
}