-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "@cubing/deploy",
"version": "0.4.12-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.10.3",
"printable-shell-command": ">=2.6.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@cubing/dev-config": ">=0.6.6",
"@types/bun": "^1.3.2",
"@types/node": "^24.10.1",
"esbuild": "^0.27.0",
"readme-cli-help": ">=0.4.7",
"typescript": "^5.9.3"
},
"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"
}