-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.12 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.12 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
{
"name": "@simple-release/core",
"type": "module",
"version": "2.4.0",
"description": "A simple tool to automate version bumps, changelogs, and releases using Conventional Commits.",
"author": {
"name": "Dan Onoshko",
"email": "danon0404@gmail.com",
"url": "https://github.com/dangreen"
},
"license": "MIT",
"homepage": "https://github.com/TrigenSoftware/simple-release/tree/main/packages/core#readme",
"funding": "https://ko-fi.com/dangreen",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/simple-release.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/simple-release/issues"
},
"keywords": [
"release",
"changelog",
"automatic",
"workflow",
"version",
"monorepo",
"workspaces",
"conventional-changelog",
"conventional-commits",
"github"
],
"engines": {
"node": ">=18"
},
"exports": "./src/index.ts",
"publishConfig": {
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"directory": "package",
"linkDirectory": false
},
"files": [
"dist"
],
"scripts": {
"clear:package": "del ./package",
"clear:dist": "del ./dist",
"clear": "del ./package ./dist ./coverage",
"prepublishOnly": "run build clear:package clean-publish",
"postpublish": "pnpm clear:package",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint",
"test:unit": "vitest run --coverage",
"test:types": "tsc --noEmit",
"test": "run -p lint test:unit test:types"
},
"dependencies": {
"@conventional-changelog/git-client": "^2.5.1",
"@simple-libs/child-process-utils": "^1.0.0",
"@simple-libs/hosted-git-info": "^1.0.1",
"@simple-libs/stream-utils": "^1.0.0",
"conventional-changelog": "^7.1.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"conventional-changelog-preset-loader": "^5.0.0",
"conventional-recommended-bump": "^11.2.0",
"semver": "^7.5.2"
},
"devDependencies": {
"@types/semver": "^7.5.8",
"fast-glob": "^3.3.3",
"test": "workspace:^"
}
}