-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 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
{
"name": "simple-ovh-dynhost",
"version": "1.0.0",
"description": "Simple DynHost updateter for OVH domains",
"main": "dist/main.js",
"bin": "dist/cli/cli.js",
"type": "module",
"repository": "https://github.com/RunAge/simple-ovh-dynhost/",
"author": "Robert \"RunAge\"Gajda",
"license": "MIT",
"private": false,
"keywords": ["dynhost", "ovh", "dyndns", "ip updater", "domain", "domain updater"],
"scripts": {
"start:dev": "NODE_ENV=development node --loader ts-node/esm --no-warnings src/main.ts",
"build": "rimraf ./dist && tsc -p ./tsconfig.json",
"eslint": "eslint --ext .ts"
},
"dependencies": {
"@kamidere/node-args": "^3.0.1",
"axios": "^0.26.1",
"toml": "^3.0.0",
"zod": "^3.14.3"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}