-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.07 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.07 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
80
81
82
83
84
85
86
87
88
89
{
"type": "module",
"name": "@ossjs/release",
"version": "0.10.1",
"description": "Minimalistic, opinionated, and predictable release automation tool.",
"main": "./bin/build/index.js",
"author": "Artem Zakharchenko <kettanaito@gmail.com>",
"license": "MIT",
"bin": {
"release": "./bin/cli.js"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"./bin",
"./src",
"./schema.json"
],
"scripts": {
"dev": "tsdown -w",
"cli": "./bin/cli.js",
"build": "tsdown",
"test": "vitest",
"lint": "publint",
"release": "pnpm cli publish"
},
"imports": {
"#/*": "./*"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./bin/build/index.d.ts",
"default": "./bin/build/index.js"
}
},
"devDependencies": {
"@rolldown/binding-darwin-arm64": "1.0.0-beta.40",
"fs-teardown": "^0.3.2",
"msw": "^2.12.1",
"node-git-server": "^1.0.0-beta.30",
"portfinder": "^1.0.28",
"prettier": "^3.6.2",
"tsdown": "^0.16.3",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"dependencies": {
"@open-draft/deferred-promise": "^2.2.0",
"@types/conventional-commits-parser": "^5.0.2",
"@types/issue-parser": "^3.0.1",
"@types/node": "^24.10.1",
"@types/semver": "^7.5.1",
"@types/yargs": "^17.0.34",
"ajv": "^8.17.1",
"conventional-commits-parser": "^6.2.1",
"get-stream": "^6.0.1",
"git-log-parser": "^1.2.0",
"issue-parser": "^7.0.1",
"outvariant": "^1.4.3",
"pino": "^7.10.0",
"pino-pretty": "^7.6.1",
"publint": "^0.3.15",
"rc": "^1.2.8",
"registry-auth-token": "^5.1.0",
"semver": "^7.7.3",
"until-async": "^3.0.2",
"yargs": "^18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ossjs/release.git"
},
"homepage": "https://github.com/ossjs/release#readme",
"publishConfig": {
"access": "public"
},
"keywords": [
"release",
"automation",
"changelog",
"pubilsh",
"semver",
"version",
"package"
],
"packageManager": "pnpm@9.14.2"
}