-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 981 Bytes
/
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
35
36
37
38
39
40
41
42
43
{
"name": "@alshdavid/mach",
"version": "0.0.0-local",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/alshdavid/mach.git"
},
"files": [
"cmd",
"lib",
"types",
"package.json",
"postinstall.mjs",
"tsconfig.json"
],
"bin": {
"mach": "/cmd/bin.mjs"
},
"imports": {
"#worker": {
"source": "./cmd/worker.ts",
"default": "./cmd/worker.js"
}
},
"exports": {
"source": "./lib/index.dev.mjs",
"types": "./lib/index.mjs",
"default": "./lib/index.js"
},
"optionalDependencies": {
"@alshdavid/mach-linux-amd64": "0.0.0-local",
"@alshdavid/mach-linux-arm64": "0.0.0-local",
"@alshdavid/mach-macos-amd64": "0.0.0-local",
"@alshdavid/mach-macos-arm64": "0.0.0-local",
"@alshdavid/mach-windows-amd64": "0.0.0-local",
"@alshdavid/mach-windows-arm64": "0.0.0-local"
},
"peerDependencies": {
"@types/node": ">=20"
}
}