This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (49 loc) · 1.6 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
{
"name": "cloudflare-file-hosting",
"version": "0.2.0",
"description": "Use Cloudflare as a file host with Workers and Workers KV",
"main": "./dist/lib/fileCore.js",
"bin": {
"cfupload": "./dist/cli/cli.js"
},
"types": "./lib/fileCore.ts",
"scripts": {
"testcli": "npm run buildcli && node ./dist/cli/cli.js --path test",
"buildcli": "tsc",
"buildlib": "tsc",
"dist": "cross-env NODE_ENV=production npm run buildworker && cross-env NODE_ENV=production npm run buildcli && cross-env NODE_ENV=production npm run buildlib",
"buildworker": "webpack --config worker.webpack.config.js",
"watchworker": "webpack --config worker.webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/judge2020/cloudflare-file-hosting"
},
"keywords": [
"cloudflare",
"serverless",
"workers"
],
"author": "judge2020",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.6.2",
"@udacity/types-service-worker-mock": "^1.0.0",
"cloudflare-worker-mock": "^1.0.0",
"cross-dotenv": "^1.0.4",
"cross-env": "^5.2.0",
"ts-loader": "^6.0.4",
"types-cloudflare-worker": "^1.0.0",
"typescript": "^3.5.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"arraybuffer-to-string": "^1.0.2",
"axios": "^0.19.0",
"cloudflare-workers-toolkit": "^0.1.0",
"commander": "^2.20.0",
"slash": "^3.0.0",
"walkdir": "^0.4.0"
}
}