-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "f2f-transfer",
"version": "1.0.0",
"description": "Simple peer-to-peer file and text transfer tool using Cloudflare Workers",
"scripts": {
"build:css": "postcss src/input.css -o public/assets/css/style.css",
"watch:css": "postcss src/input.css -o public/assets/css/style.css --watch",
"dev": "npm run build:css && wrangler pages dev public --kv TRANSFERS",
"minify:html": "html-minifier-terser --collapse-whitespace --remove-comments --remove-redundant-attributes --remove-empty-attributes --minify-css true --minify-js true public/index.html -o public/index.html",
"deploy": "npm run build:css && npm run minify:html",
"build": "npm run build:css"
},
"keywords": [
"cloudflare",
"cloudflare-workers",
"cloudflare-pages",
"file-transfer",
"file-sharing",
"text-sharing",
"image-sharing",
"p2p",
"peer-to-peer",
"share-code",
"temporary-file",
"serverless",
"edge-computing",
"batch-upload",
"zip-download",
"kv-storage",
"tailwindcss",
"free",
"no-registration"
],
"author": "isnl",
"license": "MIT",
"homepage": "https://f2f.icu",
"repository": {
"type": "git",
"url": "https://github.com/isnl/f2f.git"
},
"bugs": {
"url": "https://github.com/isnl/f2f/issues"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241127.0",
"@tailwindcss/postcss": "^4.1.16",
"autoprefixer": "^10.4.21",
"cssnano": "^7.1.1",
"html-minifier-terser": "^7.2.0",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"tailwindcss": "^4.1.16",
"wrangler": "^3.0.0"
}
}