-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.84 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
{
"name": "@varlock/cloudflare-integration",
"description": "Cloudflare Workers integration for varlock - deploy secrets via wrangler and auto-configure Vite",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "https://github.com/dmno-dev/varlock.git",
"directory": "packages/integrations/cloudflare"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./sveltekit": {
"types": "./dist/sveltekit.d.ts",
"default": "./dist/sveltekit.js"
},
"./init": {
"types": "./dist/init.d.ts",
"default": "./dist/init.js"
},
"./ssr-entry-code": {
"types": "./dist/shared-ssr-entry-code.d.ts",
"default": "./dist/shared-ssr-entry-code.js"
}
},
"bin": {
"varlock-wrangler": "./bin/varlock-wrangler.js"
},
"files": [
"/bin",
"/dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit"
},
"keywords": [
"varlock",
"cloudflare",
"cloudflare-workers",
"wrangler",
"env",
".env",
"environment variables",
"secrets",
"varlock-integration"
],
"author": "dmno-dev",
"license": "MIT",
"engines": {
"node": ">=22"
},
"peerDependencies": {
"varlock": "workspace:^1.11.0",
"vite": ">=5",
"wrangler": ">=3",
"@cloudflare/vite-plugin": ">=1"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
},
"wrangler": {
"optional": true
},
"@cloudflare/vite-plugin": {
"optional": true
}
},
"devDependencies": {
"@types/node": "catalog:",
"@varlock/vite-integration": "workspace:^",
"tsup": "catalog:",
"varlock": "workspace:^1.11.0",
"vite": "^7.1.0",
"vitest": "catalog:"
}
}