forked from BetaHuhn/cf-worker-redirect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
50
51
52
53
54
55
{
"name": "cf-worker-redirect",
"version": "1.3.0",
"description": "Simple URL shortener running at the edge with Cloudflare Workers and Worker KV.",
"main": "dist/index.js",
"private": true,
"scripts": {
"lint": "balena-lint src/ && echo \"Done!\"",
"lint:fix": "balena-lint src/ --fix && echo \"Done!\"",
"test:clean": "rimraf ./transpiled/src ./transpiled/test",
"test": "npm run lint && npm run test:clean && npm run transpile && mocha --require source-map-support/register --recursive transpiled/test",
"transpile": "tsc --project ./test",
"dev": "wrangler dev",
"build": "webpack",
"deploy": "worker-setup deploy",
"generate": "worker-setup generate"
},
"engines": {
"node": ">=22 <23"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/betahuhn/cf-worker-redirect.git"
},
"keywords": [
"template",
"workers",
"cloudflare-workers",
"typescript",
"nodejs"
],
"author": "Maximilian Schiller <schiller@mxis.ch>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/betahuhn/cf-worker-redirect/issues"
},
"homepage": "/~https://github.com/betahuhn/cf-worker-redirect#readme",
"devDependencies": {
"@balena/lint": "^9.1.3",
"@cloudflare/workers-types": "^2.2.2",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"chai": "^5.1.2",
"mocha": "^11.1.0",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"worker-setup": "^1.5.3"
},
"versionist": {
"publishedAt": "2025-02-27T11:11:18.622Z"
}
}