-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "@cubing/deploy",
"version": "0.4.13-dev",
"description": "Dreamhost-compatible deploys using [`bun`](https://bun.sh/) and `rsync`.",
"author": "Lucas Garron <code@garron.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cubing/deploy.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/lib/@cubing/deploy/index.d.ts",
"import": "./dist/lib/@cubing/deploy/index.js"
}
},
"bin": {
"deploy": "dist/cli/main.js"
},
"dependencies": {
"path-class": ">=0.14.0",
"printable-shell-command": ">=5.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@cubing/dev-config": ">=0.9.5",
"@types/bun": "^1.3.14",
"@types/node": "^25.6.0",
"@typescript/native-preview": "^7.0.0-dev.20260512.1",
"bun-dx": "^0.1.4",
"esbuild": "^0.28.0",
"readme-cli-help": ">=0.5.0"
},
"files": [
"./config-schema.json",
"./config-schema.package.json",
"./dist/",
"./src/"
],
"scripts": {
"prepublishOnly": "make prepublishOnly"
},
"@cubing/deploy": {
"https://experiments.cubing.net/test/deploy": {}
},
"$schema": "./config-schema.package.json"
}