forked from sebbo2002/semantic-release-jsr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.92 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
{
"author": "Sebastian Pekarek <[email protected]>",
"bugs": {
"url": "https://github.com/sebbo2002/semantic-release-jsr/issues"
},
"dependencies": {
"jsr": "^0.12.2"
},
"description": "Small `semantic-release` plugin, which adjusts the version in the `jsr.json` file and executes `jsr publish` to publish the module on jsr.io as well.",
"devDependencies": {
"@qiwi/semantic-release-gh-pages-plugin": "^5.2.12",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@types/signale": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-plugin-jsonc": "^2.15.1",
"esm": "^3.2.25",
"license-checker": "^25.0.1",
"mocha": "^10.4.0",
"mochawesome": "^7.1.3",
"semantic-release-license": "^1.0.3",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"/dist"
],
"homepage": "https://github.com/sebbo2002/semantic-release-jsr#readme",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"name": "@sebbo2002/semantic-release-jsr",
"repository": {
"type": "git",
"url": "git+https://github.com/sebbo2002/semantic-release-jsr.git"
},
"scripts": {
"build": "tsup && cp ./dist/index.d.ts ./dist/index.d.cts",
"build-all": "./.github/workflows/build.sh",
"coverage": "c8 mocha",
"license-check": "license-checker --production --summary",
"lint": "eslint . --ext .ts,.json",
"test": "mocha"
},
"type": "module",
"version": "1.0.0-dev.0"
}