-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 3.46 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "cz-vinyl",
"version": "2.5.4",
"description": "Commitizen adapter for formatting commit messages",
"author": "Tal Rofe <[email protected]> (https://github.com/tal-rofe)",
"license": "MIT",
"keywords": [
"commitizen",
"adapter",
"emoji",
"jira"
],
"contributors": [
{
"name": "Tal Rofe",
"email": "[email protected]"
}
],
"homepage": "https://github.com/tal-rofe/cz-vinyl#readme",
"bugs": {
"url": "https://github.com/tal-rofe/cz-vinyl/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tal-rofe/cz-vinyl.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/config.d.ts",
"import": "./dist/config.d.ts",
"require": "./dist/index.cjs"
}
},
"types": "./dist/config.d.ts",
"files": [
"dist/index.cjs",
"dist/config.d.ts",
"dist/models/configuration.d.ts"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.16"
},
"scripts": {
"husky:install": "husky install",
"git:config": "git config --local include.path ../.gitconfig",
"setdev": "run-p husky:install git:config",
"onboarding": "node ./scripts/onboarding.js",
"prepare": "is-ci || run-s setdev onboarding",
"build": "node --loader ts-node/esm node_modules/webpack-cli/bin/cli.js -c ./webpack.config.ts",
"test": "vitest run -c ./vitest.config.ts",
"test:watch": "vitest watch -c ./vitest.config.ts",
"test:cov": "vitest run --coverage -c ./vitest.config.ts",
"automation": "node ./automation/main.spec.cjs",
"lint": "eslint -c ./.eslintrc.cjs \"**/*.{ts,js,cjs}\"",
"prettier": "prettier --check **/*.{ts,js,cjs,json,yaml}",
"type-check": "tsc --project ./tsconfig.json",
"inflint": "inflint -c ./inflint.config.cjs",
"knip": "knip -c ./knip.json -t ./tsconfig.json",
"cspell": "cspell lint -c ./cspell.json --gitignore --no-progress --no-summary **"
},
"dependencies": {
"cosmiconfig": "9.0.0",
"cosmiconfig-typescript-loader": "6.1.0",
"fuse.js": "7.0.0",
"inquirer-autocomplete-prompt": "2.0.1",
"inquirer-maxlength-input-prompt": "1.0.2",
"openai": "4.77.4",
"string-template": "1.0.0",
"word-wrap": "1.2.5",
"zod": "3.24.1"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@exlint.io/inflint": "2.1.1",
"@types/inquirer": "9.0.7",
"@types/inquirer-autocomplete-prompt": "3.0.0",
"@types/json-diff": "1.0.3",
"@types/node": "22.10.1",
"@types/string-template": "1.0.6",
"@types/webpack-node-externals": "3.0.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "1.6.0",
"chalk": "5.4.1",
"commitizen": "4.3.1",
"commitlint": "19.6.1",
"cspell": "8.17.1",
"cz-vinyl": "2.5.4",
"deep-object-diff": "1.1.9",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "56.0.1",
"eslint-plugin-unused-imports": "4.1.4",
"figlet": "1.8.0",
"husky": "9.1.7",
"is-ci": "3.0.1",
"json-diff": "1.0.6",
"knip": "5.41.1",
"lint-staged": "15.3.0",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths-webpack-plugin": "4.2.0",
"typescript": "5.7.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "1.6.0",
"webpack": "5.97.1",
"webpack-cli": "5.1.4",
"webpack-node-externals": "3.0.0",
"webpack-shell-plugin-next": "2.3.2"
},
"overrides": {
"inquirer": "8.2.6"
}
}