-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.91 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.91 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
{
"name": "@konfeature/erpc-config-generator",
"description": "Simple typescript tools to generate eRPC yaml config file",
"version": "0.1.2",
"author": "KONFeature",
"license": "Apache-2.0",
"maintainers": [
{
"name": "Quentin Nivelais",
"url": "https://twitter.com/QNivelais"
}
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"type": "module",
"files": [
"/dist",
"src/**/*.ts"
],
"bin": {
"erpc-config": "./dist/cli/index.cjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
},
"./cli": {
"types": "./dist/cli/cli.d.ts",
"import": "./dist/cli/cli.js",
"default": "./dist/cli/cli.cjs"
}
},
"peerDependencies": {
"typescript": "^5.7.3",
"@erpc-cloud/config": "^0.0.11",
"viem": "^2.22.17",
"permissionless": "^0.2.28"
},
"scripts": {
"format": "biome check --write .",
"format:check": "biome check .",
"clean": "rimraf dist",
"build": "tsup --splitting",
"build:watch": "tsup --watch --splitting --format esm",
"update:deps": "npm-check-updates -ui",
"typecheck": "tsc",
"example": "bun run build && bun run erpc-config --config ./example/simple.ts --out ./example/simple.js",
"changeset:release": "bun run build && changeset publish",
"changeset:version": "changeset version && bun install --lockfile-only"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-git": "^0.2.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@types/bun": "latest",
"bun": "^1.2.2",
"npm-check-updates": "^17.1.14",
"@erpc-cloud/config": "^0.0.39",
"tsup": "^8.3.6"
},
"dependencies": {
"bundle-require": "^5.1.0",
"esbuild": "^0.24.2",
"gluegun": "^5.2.0"
}
}