-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.19 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
{
"name": "fork-version",
"version": "1.7.9",
"license": "MIT",
"description": "Fork-Version automates version control tasks such as determining, updating, and committing versions, files, and changelogs, simplifying the process when adhering to the conventional commit standard.",
"keywords": [
"changelog",
"commit",
"conventional changelog",
"conventional commits",
"git",
"metadata",
"semantic version",
"semantic",
"semver",
"tag",
"version"
],
"homepage": "https://github.com/eglavin/fork-version",
"bugs": {
"url": "https://github.com/eglavin/fork-version/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eglavin/fork-version.git"
},
"author": {
"name": "Eanna Glavin",
"url": "https://eglavin.com"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"private": false,
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./cli": {
"import": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
},
"require": {
"types": "./dist/cli.d.cts",
"default": "./dist/cli.cjs"
}
},
"./package.json": "./package.json"
},
"bin": {
"fork-version": "./dist/cli.js"
},
"files": [
"dist",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"fork-version": "node dist/cli.js",
"dev": "tsup --watch",
"build": "tsup",
"update-json-schema": "node scripts/update-json-schema.js",
"update-readme-cli-options": "node scripts/update-readme-cli-options.js",
"lint": "eslint --fix \"src/**/*.ts\"",
"lint:check": "eslint \"src/**/*.ts\"",
"lint:format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:cover": "vitest --coverage",
"test:ci": "vitest run --coverage --no-file-parallelism",
"test:ui": "vitest --ui",
"test:cleanup": "rimraf -g ../fork-version.tests/*"
},
"dependencies": {
"bundle-require": "5.0.0",
"cheerio": "1.0.0",
"conventional-changelog": "5.1.0",
"conventional-changelog-config-spec": "2.1.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"conventional-recommended-bump": "9.0.0",
"esbuild": "0.24.0",
"glob": "10.3.12",
"joycon": "3.1.1",
"jsonc-parser": "^3.3.1",
"meow": "13.2.0",
"semver": "7.6.3",
"yaml": "2.6.0",
"zod": "3.23.8"
},
"devDependencies": {
"@types/json-schema": "7.0.15",
"@types/node": "20.11.30",
"@types/semver": "7.5.8",
"@vitest/coverage-v8": "2.1.4",
"@vitest/ui": "2.1.4",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.11.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"typescript": "5.6.3",
"typescript-eslint": "8.12.2",
"vitest": "2.1.4",
"zod-to-json-schema": "3.23.5"
}
}