-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
71
72
73
74
75
76
77
78
{
"name": "@wajeht/cdns",
"version": "1.4.0",
"description": "a cli tool to schedule automatic updates for cloudflare dns records",
"main": "./dist/src/index.js",
"bin": {
"cdns": "./dist/src/index.js"
},
"scripts": {
"postinstall": "chmod +x ./dist/src/scripts/post-install.js && ./dist/src/scripts/post-install.js",
"cli": "npm unlink cdns && rm -rf ./dist && npm run build && chmod +x ./dist/src/index.js && npm link",
"dev": "npm run cli && tsc -w",
"build": "tsc --noImplicitAny",
"publish": "chmod +x ./src/scripts/publish.sh && ./src/scripts/publish.sh",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint:check": "eslint .",
"lint": "eslint --fix .",
"test:watch": "vitest",
"test": "vitest --run",
"db:push": "npx prisma db push",
"db:generate": "npx prisma generate",
"db:migrate": "npx prisma migrate dev",
"db:migrate:deploy": "npx prisma migrate deploy",
"db:reset": "npx prisma migrate reset --force"
},
"prisma": {
"schema": "./src/database/schema.prisma"
},
"keywords": [
"cloud flare",
"dns"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wajeht/cdns.git"
},
"bugs": {
"url": "https://github.com/wajeht/cdns/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"homepage": "https://github.com/wajeht/cdns#readme",
"author": "@wajeht",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/node": "^20.11.17",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"prettier": "^3.2.5",
"semantic-release": "^22.0.12",
"typescript": "^5.3.3",
"vitest": "^0.34.6"
},
"dependencies": {
"@inquirer/prompts": "^3.3.2",
"@prisma/client": "^5.9.1",
"axios": "^1.6.7",
"commander": "^11.1.0",
"node-cron": "^3.0.3",
"prisma": "^5.9.1"
}
}