-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.77 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
63
64
65
66
67
68
69
70
{
"name": "branded-short-links",
"displayName": "Branded Short Links",
"version": "1.1.1",
"description": "A short link manager for branded links with Google Tag Manager support running on Cloudflare Workers",
"main": "",
"exports": "./",
"type": "module",
"private": true,
"scripts": {
"start": "wrangler dev",
"authorize": "wrangler login",
"deploy": "npm-run-all --sequential deploy:*",
"deploy:lint": "npx eslint ./src",
"deploy:wrangler": "wrangler deploy"
},
"types": "",
"repository": {
"type": "git",
"url": "git://github.com/cbnventures/branded-short-links.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cbnventures"
},
{
"type": "custom",
"url": "https://www.cbnventures.io/paypal/"
}
],
"keywords": [
"url-shortener",
"branded-links",
"google-analytics",
"google-tag-manager",
"cloudflare"
],
"author": {
"name": "Jacky Liang",
"email": "hello@mrjackyliang.com",
"url": "https://www.mrjackyliang.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cbnventures/branded-short-links/issues"
},
"files": [],
"homepage": "https://github.com/cbnventures/branded-short-links",
"engines": {
"node": ">=18"
},
"dependencies": {
"lodash": "4.17.21",
"zod": "3.22.4"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20240312.0",
"@types/lodash": "4.17.0",
"@types/node": "20.11.26",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"npm-run-all": "4.1.5",
"typescript": "5.4.2",
"wrangler": "3.33.0"
}
}