-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"name": "@stacc/changeset-formatter",
"version": "0.2.3",
"description": "A custom formatter for changesets",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"publish": "pnpm publish --no-git-checks",
"changeset": "changeset",
"version": "changeset version",
"test": "vitest"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stacc/changeset-formatter.git"
},
"keywords": [
"changesets",
"changelog",
"formatter"
],
"author": "Stacc AS",
"license": "ISC",
"dependencies": {
"@changesets/get-github-info": "^0.6.0"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@changesets/parse": "^0.3.16",
"@changesets/types": "^6.1.0",
"@types/node": "^22.13.10",
"typescript": "^5.8.2",
"vitest": "^1.2.1"
}
}