-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.22 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.22 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@compass-aiden/migrate-cli",
"description": "数据库迁移工具 - 支持多种数据库的版本管理CLI工具",
"version": "0.0.4",
"type": "module",
"main": "index.js",
"bin": {
"migrate": "index.js"
},
"files": [
"dist",
"index.js"
],
"author": "Aiden <aiden_jin@outlook.com>",
"repository": "https://github.com/Aiden-FE/migrate-cli",
"homepage": "https://github.com/Aiden-FE/migrate-cli/blob/master/README.md",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"nodejs",
"terminal",
"mysql",
"schema-migrations",
"postgres",
"command-line",
"database-migrations",
"cli-tool",
"database-versioning"
],
"scripts": {
"dev": "rollup -w -c rollup.config.js",
"build": "npm run clean && rollup -c rollup.config.js",
"clean": "rimraf dist && rimraf types && rimraf stats.html && rimraf coverage",
"format": "prettier --write src",
"prepare": "npx simple-git-hooks"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.3",
"@types/figlet": "^1.5.8",
"@types/node": "^20.11.26",
"@types/pg": "^8.15.4",
"@zerollup/ts-transform-paths": "^1.7.18",
"prettier": "^3.5.3",
"pretty-quick": "^4.2.2",
"rimraf": "^5.0.5",
"rollup": "^4.12.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-summary": "^2.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"simple-git-hooks": "^2.13.0",
"tslib": "^2.6.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@compass-aiden/helpers": "^0.2.0",
"@compass-aiden/telegram": "^2.3.1",
"@inquirer/prompts": "^4.3.1",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^16.5.0",
"figlet": "^1.7.0",
"mysql2": "^3.14.1",
"nanospinner": "^1.2.2",
"pg": "^8.16.2"
},
"simple-git-hooks": {
"commit-msg": "npx --no -- commitlint --edit $1",
"pre-commit": "npx pretty-quick --staged"
}
}