-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.93 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "cloudflare-updater",
"version": "1.2.1",
"type": "module",
"description": "Cloudflare updater automatically updates your DNS records and access rules based on your changing IP address",
"main": "dist/index.js",
"bin": {
"cloudflare-updater": "./dist/index.js"
},
"scripts": {
"dev": "bun src/index.ts",
"build": "tsc",
"start": "bun dist/index.js",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "bunx --bun @biomejs/biome lint .",
"lint:fix": "bunx --bun @biomejs/biome lint --write .",
"format": "bunx --bun @biomejs/biome format --write .",
"check": "bunx --bun @biomejs/biome check .",
"check:fix": "bunx --bun @biomejs/biome check --write .",
"check:types": "tsc -p tsconfig.json --noEmit",
"commit": "cz",
"prepare": "lefthook install",
"knip": "knip",
"knip:production": "knip --production",
"release": "semantic-release",
"docker:build": "docker build -t cloudflare-updater .",
"docker:start": "docker run --rm --env-file .env.docker cloudflare-updater"
},
"keywords": [
"cloudflare",
"dns",
"updater",
"dynamic-ip"
],
"author": "rouvenschandl",
"license": "ISC",
"packageManager": "bun@1.3.11",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@types/bun": "^1.3.11",
"@types/node": "^25.5.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"knip": "^6.0.3",
"lefthook": "^2.1.4",
"semantic-release": "^25.0.3",
"typescript": "^6.0.2"
},
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"chalk": "^5.6.2",
"cloudflare": "^5.2.0",
"ora": "^9.3.0"
}
}