@codama/renderers-rust 1.2.4 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +15 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codama/renderers-rust",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "Renders Rust clients for your programs",
|
|
5
5
|
"exports": {
|
|
6
6
|
"types": "./dist/types/index.d.ts",
|
|
@@ -28,16 +28,16 @@
|
|
|
28
28
|
"client"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@solana/codecs-strings": "^3.0.
|
|
31
|
+
"@solana/codecs-strings": "^3.0.3",
|
|
32
32
|
"nunjucks": "^3.2.4",
|
|
33
|
-
"@codama/errors": "1.3.
|
|
34
|
-
"@codama/nodes": "1.3.
|
|
35
|
-
"@codama/renderers-core": "1.2.
|
|
36
|
-
"@codama/visitors-core": "1.3.
|
|
33
|
+
"@codama/errors": "1.3.6",
|
|
34
|
+
"@codama/nodes": "1.3.6",
|
|
35
|
+
"@codama/renderers-core": "1.2.1",
|
|
36
|
+
"@codama/visitors-core": "1.3.6"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/nunjucks": "^3.2.6",
|
|
40
|
-
"@codama/nodes-from-anchor": "1.2.
|
|
40
|
+
"@codama/nodes-from-anchor": "1.2.8"
|
|
41
41
|
},
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"repository": {
|
|
@@ -52,17 +52,15 @@
|
|
|
52
52
|
"maintained node versions"
|
|
53
53
|
],
|
|
54
54
|
"scripts": {
|
|
55
|
-
"build": "rimraf dist &&
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"lint:fix": "zx ../../node_modules/@codama/internals/scripts/lint.mjs --fix",
|
|
61
|
-
"test": "pnpm test:types && pnpm test:treeshakability && pnpm test:node && pnpm test:e2e && pnpm test:exports",
|
|
55
|
+
"build": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json",
|
|
56
|
+
"dev": "vitest --project node",
|
|
57
|
+
"lint": "eslint . && prettier --check .",
|
|
58
|
+
"lint:fix": "eslint --fix . && prettier --write .",
|
|
59
|
+
"test": "pnpm test:types && pnpm test:treeshakability && pnpm test:unit && pnpm test:e2e && pnpm test:exports",
|
|
62
60
|
"test:e2e": "./e2e/test.sh",
|
|
63
61
|
"test:exports": "node ./test/exports/module.mjs && node ./test/exports/commonjs.cjs",
|
|
64
|
-
"test:
|
|
65
|
-
"test:
|
|
66
|
-
"test:
|
|
62
|
+
"test:treeshakability": "for file in dist/index.*.mjs; do agadoo $file; done",
|
|
63
|
+
"test:types": "tsc --noEmit",
|
|
64
|
+
"test:unit": "vitest run"
|
|
67
65
|
}
|
|
68
66
|
}
|