-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.75 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
104
105
106
107
108
109
{
"name": "@executor-js/plugin-openapi",
"version": "1.5.6",
"homepage": "https://github.com/RhysSullivan/executor/tree/main/packages/plugins/openapi",
"bugs": {
"url": "https://github.com/RhysSullivan/executor/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RhysSullivan/executor.git",
"directory": "packages/plugins/openapi"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": "./src/sdk/index.ts",
"./promise": "./src/promise.ts",
"./api": "./src/api/index.ts",
"./react": "./src/react/index.ts",
"./client": "./src/react/plugin-client.tsx",
"./presets": "./src/sdk/presets.ts",
"./testing": "./src/testing/index.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": {
"types": "./dist/promise.d.ts",
"default": "./dist/index.js"
}
},
"./core": {
"import": {
"types": "./dist/sdk/index.d.ts",
"default": "./dist/core.js"
}
},
"./client": {
"import": {
"types": "./dist/react/plugin-client.d.ts",
"default": "./dist/client.js"
}
},
"./testing": {
"import": {
"types": "./dist/testing/index.d.ts",
"default": "./dist/testing.js"
}
}
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"typecheck:slow": "bunx tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@effect/platform-node": "catalog:",
"@executor-js/config": "workspace:*",
"@executor-js/sdk": "workspace:*",
"lucide-react": "^1.7.0",
"openapi-types": "^12.1.3",
"yaml": "^2.7.1"
},
"devDependencies": {
"@effect/atom-react": "catalog:",
"@effect/vitest": "catalog:",
"@executor-js/api": "workspace:*",
"@executor-js/react": "workspace:*",
"@types/node": "catalog:",
"@types/react": "catalog:",
"bun-types": "catalog:",
"effect": "catalog:",
"react": "catalog:",
"tsup": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"@effect/atom-react": "catalog:",
"@executor-js/api": "workspace:*",
"@executor-js/react": "workspace:*",
"@tanstack/react-router": "catalog:",
"effect": "catalog:",
"react": "catalog:"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"@effect/atom-react": {
"optional": true
},
"@tanstack/react-router": {
"optional": true
},
"@executor-js/api": {
"optional": true
},
"@executor-js/react": {
"optional": true
}
}
}