-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 913 Bytes
/
package.json
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
{
"name": "wangler",
"version": "0.0.7",
"description": "Wrangler wrapper with .env file support",
"main": "dist/index.js",
"bin": {
"wangler": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/threepointone/wangler.git"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^22.10.2",
"esbuild": "0.24.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"wrangler": "*"
},
"files": [
"dist/index.js",
"README.md",
"LICENSE"
],
"keywords": [
"cloudflare",
"workers",
"wrangler",
"dotenv"
],
"author": "Sunil Pai <[email protected]>",
"license": "MIT",
"overrides": {
"esbuild": "0.24.2"
}
}