-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.22 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
{
"name": "@remix-run/changelog-github",
"version": "0.0.5",
"description": "A changelog entry generator for GitHub that links to commits, PRs and users",
"main": "dist/changelog-github.js",
"module": "dist/changelog-github.mjs",
"types": "dist/changelog-github.d.ts",
"license": "MIT",
"repository": "https://github.com/remix-run/changelog-github/tree/main",
"scripts": {
"build": "tsup",
"build:internal": "npm run build -- --config tsup.internal.config.ts && copyfiles ./package.json ./node_modules/@remix-run/changelog-github",
"changeset": "changeset",
"changeset:version": "npm run build:internal && changeset version",
"changeset:release": "npm run build:internal && npm run build && changeset publish",
"test": "vitest"
},
"dependencies": {
"@changesets/errors": "^0.1.4",
"@changesets/get-github-info": "^0.5.1",
"@changesets/types": "^5.0.0",
"dotenv": "^8.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.24.1",
"@changesets/parse": "^0.3.13",
"copyfiles": "^2.4.1",
"prettier": "^2.7.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vitest": "^0.18.1"
},
"files": [
"dist",
"CHANGELOG.md",
"README.md",
"package.json"
]
}