-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.61 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
68
69
{
"name": "@wdl-dev/cli",
"version": "1.2.2",
"description": "Companion CLI for the WDL platform (open-source, self-hostable): deploy Cloudflare Workers-style projects, manage WDL resources, and tail live worker logs.",
"author": "The WDL Authors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/wdl-dev/cli.git"
},
"homepage": "https://github.com/wdl-dev/cli#readme",
"bugs": "https://github.com/wdl-dev/cli/issues",
"type": "module",
"keywords": [
"wdl",
"cloudflare-workers",
"workers",
"cli",
"deployment"
],
"bin": {
"wdl": "bin/wdl.js"
},
"files": [
"bin/",
"commands/",
"lib/",
"docs/",
"templates/",
"examples/",
"!examples/*/package-lock.json",
"!examples/*/node_modules/",
"!examples/*/node_modules/**",
"!examples/*/.deploy-dist/",
"!examples/*/.deploy-dist/**",
"!examples/*/.wrangler/",
"!examples/*/.wrangler/**",
".env.example",
"LICENSE",
"README.md",
"README-zh.md",
"CHANGELOG.md",
"GUIDE.md",
"GUIDE-zh.md"
],
"dependencies": {
"smol-toml": "^1.3.1",
"wrangler": "^4.102.0"
},
"engines": {
"node": ">=22"
},
"scripts": {
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "node --test tests/unit/cli-*.test.js",
"prepublishOnly": "npm run lint && npm run typecheck && npm test"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.19.21",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"typescript": "^6.0.3"
}
}