-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.3 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@borderless/cfb",
"version": "1.2.1",
"publishConfig": {
"access": "public"
},
"description": "Compile a Cloudflare Workers script into a single file",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/BorderlessLabs/cfb.git"
},
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"homepage": "https://github.com/BorderlessLabs/cfb",
"bugs": {
"url": "https://github.com/BorderlessLabs/cfb/issues"
},
"main": "dist/index.js",
"bin": "dist/bin.js",
"type": "module",
"engines": {
"node": ">=14"
},
"scripts": {
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install && ts-scripts build",
"specs": "ts-scripts specs",
"test": "ts-scripts test"
},
"files": [
"dist/"
],
"keywords": [
"cloudflare",
"worker",
"build",
"bundle",
"cli",
"typescript"
],
"dependencies": {
"arg": "^5.0.0",
"esbuild": "^0.14.39"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.11.0",
"@jest/globals": "^28.1.0",
"@types/node": "^17.0.34",
"typescript": "^4.2.4"
},
"typings": "dist/index.d.ts",
"ts-scripts": {
"project": [
"tsconfig.build.json"
]
}
}