-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "changesets-snapshot",
"version": "0.1.1",
"license": "MIT",
"sideEffects": false,
"main": "dist/index.js",
"scripts": {
"build": "tsup",
"changeset": "changeset",
"format": "skuba format",
"lint": "skuba lint",
"release": "node ./scripts/release.mjs",
"test": "skuba test",
"test:ci": "skuba test --coverage",
"test:watch": "skuba test --watch"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.0",
"@manypkg/get-packages": "^2.0.0",
"@types/node": "^20.11.16",
"package-manager-detector": "^0.2.2",
"prettier": "^3.0.0",
"resolve-from": "^5.0.0",
"skuba": "9.1.0",
"tsup": "^8.0.1"
},
"packageManager": "[email protected]",
"volta": {
"node": "20.18.1",
"pnpm": "9.15.2"
},
"skuba": {
"entryPoint": "src/index.ts",
"template": null,
"type": "package",
"version": "9.1.0"
}
}