-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.49 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.49 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
{
"name": "@codama/renderers-js-umi",
"version": "1.1.0",
"description": "JavaScript renderer compatible with the Umi framework",
"exports": {
"types": "./dist/types/index.d.ts",
"node": {
"import": "./dist/index.node.mjs",
"require": "./dist/index.node.cjs"
}
},
"main": "./dist/index.node.cjs",
"module": "./dist/index.node.mjs",
"types": "./dist/types/index.d.ts",
"type": "commonjs",
"files": [
"./dist/templates",
"./dist/types",
"./dist/index.*"
],
"sideEffects": false,
"keywords": [
"solana",
"framework",
"standard",
"renderers",
"js",
"umi",
"client"
],
"scripts": {
"build": "rimraf dist && pnpm build:src && pnpm build:types",
"build:src": "zx ../../node_modules/@codama/internals/scripts/build-src.mjs node",
"build:types": "zx ../../node_modules/@codama/internals/scripts/build-types.mjs",
"dev": "zx ../../node_modules/@codama/internals/scripts/test-unit.mjs node --watch",
"lint": "zx ../../node_modules/@codama/internals/scripts/lint.mjs",
"lint:fix": "zx ../../node_modules/@codama/internals/scripts/lint.mjs --fix",
"test": "pnpm test:types && pnpm test:treeshakability && pnpm test:node && pnpm test:e2e && pnpm test:exports",
"test:e2e": "./e2e/test.sh",
"test:exports": "node ./test/exports/module.mjs && node ./test/exports/commonjs.cjs",
"test:node": "zx ../../node_modules/@codama/internals/scripts/test-unit.mjs node",
"test:treeshakability": "zx ../../node_modules/@codama/internals/scripts/test-treeshakability.mjs",
"test:types": "zx ../../node_modules/@codama/internals/scripts/test-types.mjs"
},
"dependencies": {
"@codama/errors": "workspace:*",
"@codama/nodes": "workspace:*",
"@codama/renderers-core": "workspace:*",
"@codama/validators": "workspace:*",
"@codama/visitors-core": "workspace:*",
"@solana/codecs-strings": "rc",
"nunjucks": "^3.2.4",
"prettier": "^3.4.0"
},
"devDependencies": {
"@types/nunjucks": "^3.2.6"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codama-idl/codama"
},
"bugs": {
"url": "http://github.com/codama-idl/codama/issues"
},
"browserslist": [
"supports bigint and not dead",
"maintained node versions"
]
}