-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (33 loc) · 1.04 KB
/
package.json
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
{
"name": "@hackbg/ganesha",
"type": "module",
"main": "stub.mjs",
"version": "5.0.0",
"description": "🐘 Run Node.js with various TypeScript module loaders.",
"keywords": [ "esbuild", "oxc", "ezno", "wasm", "typescript", "loader" ],
"files": [ "cli.mjs", "ganesha.svg" ],
"scripts": {
"start": "cli.mjs",
"test:all": "node test.js",
"benchmark": "echo TODO; exit 1",
"release": "ubik release --otp 000000"
},
"devDependencies": {
"@ganesha/caching": "workspace:^",
"@ganesha/esbuild": "workspace:^",
"@ganesha/esbuild-wasm": "workspace:^",
"@ganesha/oxc": "workspace:^",
"@hackbg/ubik": "^3.0.1",
"rimraf": "^5.0.5"
},
"peerDependencies": {
"@ganesha/esbuild": "workspace:^",
"@ganesha/esbuild-wasm": "workspace:^",
"@ganesha/oxc": "workspace:^"
},
"peerDependenciesMeta": {
"@ganesha/esbuild": { "optional": true },
"@ganesha/esbuild-wasm": { "optional": true },
"@ganesha/oxc": { "optional": true }
}
}