-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.7 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
{
"name": "@executor-js/plugin-example",
"version": "1.5.6",
"homepage": "https://github.com/RhysSullivan/executor/tree/main/packages/plugins/example",
"bugs": {
"url": "https://github.com/RhysSullivan/executor/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RhysSullivan/executor.git",
"directory": "packages/plugins/example"
},
"files": [
"dist"
],
"type": "module",
"exports": {
"./server": "./src/server.ts",
"./client": "./src/client.tsx",
"./shared": "./src/shared.ts"
},
"publishConfig": {
"access": "public",
"exports": {
"./server": {
"import": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
}
},
"./client": {
"import": {
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
}
},
"./shared": {
"import": {
"types": "./dist/shared.d.ts",
"default": "./dist/shared.js"
}
}
}
},
"scripts": {
"build": "tsup && (tsc --declaration --emitDeclarationOnly --outDir dist --rootDir src || true)",
"typecheck": "tsgo --noEmit",
"test": "vitest run",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {
"@executor-js/sdk": "workspace:*"
},
"devDependencies": {
"@effect/vitest": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"bun-types": "catalog:",
"react": "catalog:",
"tsup": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"react": "catalog:"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
}
}