-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.24 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "pici",
"version": "1.0.0",
"description": "Easy to use PostgreSQL dump and restore management tool",
"bin": {
"pici": "./bin/run",
"bcrypt-pass": "./bcrypt-pass.js"
},
"directories": {
"lib": "src",
"bin": "bin"
},
"files": [
"dist",
"bin"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/raxetul/pici.git"
},
"scripts": {
"build": "tsup-node",
"build:watch": "tsup-node --watch",
"clean": "rimraf dist",
"commit": "cz",
"commitlint": "commitlint --edit",
"compile": "tsc",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "ts-node -r tsconfig-paths/register ./bin/run.ts",
"start:node": "node ./bin/run",
"test": "jest",
"test:watch": "jest --watchAll",
"prepare": "husky",
"release": "semantic-release"
},
"keywords": [
"typescript",
"starter",
"cli",
"bootstrap"
],
"author": "Andrey Kucherenko <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.11.0",
"@jest/globals": "29.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.13",
"@types/node": "22.5.5",
"@types/prompts": "2.4.9",
"@types/signale": "1.4.7",
"@types/yargs": "17.0.33",
"autoprefixer": "10.4.20",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"husky": "9.1.6",
"jest": "29.7.0",
"prettier": "^3.3.3",
"rimraf": "latest",
"semantic-release": "24.1.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "8.3.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"dependencies": {
"consola": "3.2.3",
"dotenv": "16.4.5",
"giget": "1.2.3",
"open": "10.1.0",
"picocolors": "1.1.0",
"yargs": "17.7.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}