@cloudflare/deploy-helpers 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/dist/index.mjs ADDED
@@ -0,0 +1,3 @@
1
+
2
+ //# sourceMappingURL=index.mjs.map
3
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.mjs","sourcesContent":[]}
@@ -0,0 +1 @@
1
+ {"inputs":{"src/index.ts":{"bytes":114,"imports":[]}},"outputs":{"dist/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":242},"dist/index.mjs":{"imports":[],"exports":[],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":4}},"bytes":20}}}
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@cloudflare/deploy-helpers",
3
+ "version": "0.0.0",
4
+ "description": "Internal deploy helpers for workers-sdk. Not intended for external use — APIs may change without notice.",
5
+ "homepage": "https://github.com/cloudflare/workers-sdk/tree/main/packages/deploy-helpers#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/cloudflare/workers-sdk/issues"
8
+ },
9
+ "license": "MIT OR Apache-2.0",
10
+ "author": "workers-devprod@cloudflare.com",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/cloudflare/workers-sdk.git",
14
+ "directory": "packages/deploy-helpers"
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "sideEffects": false,
20
+ "exports": {
21
+ ".": {
22
+ "import": "./dist/index.mjs",
23
+ "types": "./dist/index.d.mts"
24
+ }
25
+ },
26
+ "devDependencies": {
27
+ "@types/node": "^22.10.1",
28
+ "concurrently": "^8.2.2",
29
+ "tsup": "8.3.0",
30
+ "typescript": "~5.8.3",
31
+ "vitest": "4.1.0",
32
+ "@cloudflare/containers-shared": "0.15.1",
33
+ "@cloudflare/workers-tsconfig": "0.0.0",
34
+ "miniflare": "4.20260526.0",
35
+ "@cloudflare/workers-utils": "0.21.1"
36
+ },
37
+ "volta": {
38
+ "extends": "../../package.json"
39
+ },
40
+ "workers-sdk": {
41
+ "prerelease": true
42
+ },
43
+ "scripts": {
44
+ "build": "tsup",
45
+ "check:type": "tsc -p ./tsconfig.json",
46
+ "deploy": "echo 'no deploy'",
47
+ "dev": "concurrently -c black,blue --kill-others-on-fail false \"pnpm tsup --watch src\" \"pnpm run check:type --watch --preserveWatchOutput\"",
48
+ "test": "vitest",
49
+ "test:ci": "vitest run",
50
+ "type:tests": "tsc -p ./tests/tsconfig.json"
51
+ }
52
+ }