-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.72 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.72 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "create-cloudflare",
"version": "2.66.0",
"description": "A CLI for creating and deploying new applications to Cloudflare.",
"keywords": [
"cloudflare",
"cloudflare workers",
"serverless",
"serverless application",
"workers"
],
"license": "MIT OR Apache-2.0",
"author": "wrangler@cloudflare.com",
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/workers-sdk.git",
"directory": "packages/create-cloudflare"
},
"bin": "./dist/cli.js",
"files": [
"dist",
"templates",
"templates-experimental"
],
"main": "./dist/cli.js",
"exports": {
".": "./dist/cli.js"
},
"scripts": {
"build": "node -r esbuild-register scripts/build.ts",
"check:type": "tsc",
"dev": "node -r esbuild-register scripts/build.ts --watch",
"dev:codemod": "node -r esbuild-register scripts/codemodDev.ts",
"test:ci": "vitest run --config ./vitest.config.mts",
"test:e2e": "vitest run --config ./vitest-e2e.config.mts",
"test:unit": "vitest run --config ./vitest.config.mts",
"test:unit:watch": "vitest --config ./vitest.config.mts"
},
"devDependencies": {
"@babel/parser": "^7.21.3",
"@babel/types": "^7.21.4",
"@clack/prompts": "^0.6.3",
"@cloudflare/cli": "workspace:*",
"@cloudflare/mock-npm-registry": "workspace:*",
"@cloudflare/vite-plugin": "workspace:*",
"@cloudflare/workers-tsconfig": "workspace:*",
"@cloudflare/workers-types": "catalog:default",
"@cloudflare/workers-utils": "workspace:*",
"@types/command-exists": "^1.2.0",
"@types/cross-spawn": "^6.0.2",
"@types/deepmerge": "^2.2.0",
"@types/degit": "^2.8.6",
"@types/dns2": "^2.0.3",
"@types/esprima": "^4.0.3",
"@types/node": "catalog:default",
"@types/semver": "^7.5.1",
"@types/which-pm-runs": "^1.0.0",
"@types/yargs": "^17.0.22",
"command-exists": "^1.2.9",
"comment-json": "^4.5.0",
"cross-spawn": "^7.0.3",
"deepmerge": "^4.3.1",
"degit": "^2.8.4",
"dns2": "^2.1.0",
"dotenv": "^16.0.0",
"esbuild": "catalog:default",
"execa": "^7.1.1",
"exit-hook": "2.2.1",
"get-port": "^7.1.0",
"glob": "^10.5.0",
"haikunator": "^2.1.2",
"indent-string": "^5.0.0",
"jsonc-parser": "catalog:default",
"magic-string": "^0.30.5",
"open": "^8.4.0",
"recast": "^0.22.0",
"semver": "^7.7.1",
"smol-toml": "catalog:default",
"tree-kill": "catalog:default",
"typescript": "catalog:default",
"undici": "catalog:default",
"vite": "catalog:default",
"vite-tsconfig-paths": "^4.0.8",
"vitest": "catalog:default",
"which-pm-runs": "^1.1.0",
"wrangler": "workspace:*",
"wrap-ansi": "^9.0.0",
"xdg-app-paths": "^8.3.0",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=18.14.1"
},
"volta": {
"extends": "../../package.json"
},
"workers-sdk": {
"prerelease": true,
"type": "cli"
}
}