-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.38 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
{
"name": "@ryantanen/dploy",
"version": "0.0.52",
"description": "Vercel-style just-deploy-it CLI. Point dploy at a GitHub repo and get a live URL.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/nathanaronson/dploy#readme",
"repository": {
"type": "git",
"url": "https://github.com/nathanaronson/dploy",
"directory": "cli"
},
"bugs": {
"url": "https://github.com/nathanaronson/dploy/issues"
},
"keywords": [
"deploy",
"deployment",
"cli",
"ink",
"vercel",
"ephemeral",
"sandbox",
"ai"
],
"bin": {
"dploy": "./bin/dploy"
},
"files": [
"bin",
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"build:bundle": "tsup --config tsup.bundle.config.ts",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"start": "node ./bin/dploy"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"conf": "^13.0.0",
"dotenv": "^16.4.0",
"ignore": "^5.3.0",
"ink": "^5.0.0",
"meow": "^13.2.0",
"open": "^10.1.0",
"react": "^18.3.0",
"tar": "^7.4.0",
"undici": "^6.19.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/react": "^18.3.0",
"@types/tar": "^6.1.0",
"tsup": "^8.2.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}