-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "ddns-at-home",
"version": "1.2.0",
"description": "ddns at home",
"main": "app/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development node lib/index.js",
"start:log": "cross-env NODE_ENV=development node lib/index.js > test.log",
"build": "tsc",
"onekey": "sh install.sh",
"crontab": "sh set-crontab.sh",
"chmod": "chmod +x install.sh && chmod +x set-crontab.sh",
"lint": "eslint .",
"fix": "eslint --project . --fix"
},
"keywords": [
"ddns"
],
"author": {
"name": "pboymt",
"url": "https://github.com/pboymt"
},
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/pboymt/ddns-at-home.git"
},
"devDependencies": {
"@types/cloudflare": "^2.7.8",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"cross-env": "^7.0.2",
"eslint": "^8.2.0",
"markdown-table": "^3.0.1",
"typescript": "^4.5.2"
},
"dependencies": {
"@alicloud/pop-core": "^1.7.10",
"@kocal/logger": "^2.0.11",
"ajv": "^8.11.0",
"axios": "^0.27.2",
"cloudflare": "^2.9.1",
"date-fns": "^2.15.0",
"timexe": "^1.0.5"
}
}