-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.14 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
{
"name": "@distilled.cloud/cloudflare-rolldown-plugin",
"version": "0.13.10",
"description": "Rolldown plugin for Cloudflare Workers.",
"keywords": [
"cloudflare",
"rolldown",
"workers"
],
"homepage": "https://github.com/alchemy-run/cloudflare-tools/tree/main/packages/cloudflare-rolldown-plugin#readme",
"bugs": {
"url": "https://github.com/alchemy-run/cloudflare-tools/issues"
},
"license": "MIT",
"author": {
"name": "John Royal",
"email": "john@alchemy.run",
"url": "https://distilled.cloud"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alchemy-run/cloudflare-tools.git",
"directory": "packages/cloudflare-rolldown-plugin"
},
"files": [
"dist",
"src"
],
"type": "module",
"sideEffects": false,
"main": "./dist/plugin.js",
"types": "./dist/plugin.d.ts",
"exports": {
".": {
"bun": "./src/plugin.ts",
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js"
},
"./plugins": {
"types": "./dist/plugins/index.d.ts",
"import": "./dist/plugins/index.js"
},
"./options": {
"types": "./dist/options.d.ts",
"import": "./dist/options.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run clean && bun run build"
},
"dependencies": {
"@cloudflare/unenv-preset": "^2.16.0",
"magic-string": "^0.30.21",
"unenv": "^2.0.0-rc.24"
},
"devDependencies": {
"@cloudflare/workers-types": "catalog:workers",
"@distilled.cloud/test-utils": "workspace:*",
"mysql2": "^3.22.3",
"rolldown": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"rolldown": "catalog:",
"vite": "^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"rolldown": {
"optional": true
},
"vite": {
"optional": true
}
}
}