-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.67 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
{
"name": "@ucdjs/release-scripts",
"version": "0.1.7",
"description": "@ucdjs release scripts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ucdjs/release-scripts.git"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.mts",
"imports": {
"#core/*": "./src/core/*.ts",
"#operations/*": "./src/operations/*.ts",
"#workflows/*": "./src/workflows/*.ts",
"#versioning/*": "./src/versioning/*.ts",
"#shared/*": "./src/shared/*.ts",
"#types": "./src/types.ts"
},
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@luxass/utils": "catalog:runtime",
"commit-parser": "catalog:runtime",
"farver": "catalog:runtime",
"prompts": "catalog:runtime",
"semver": "catalog:runtime",
"tinyexec": "catalog:runtime"
},
"devDependencies": {
"@luxass/msw-utils": "catalog:dev",
"@types/node": "catalog:types",
"@types/prompts": "catalog:types",
"@types/semver": "catalog:types",
"eta": "catalog:dev",
"msw": "catalog:dev",
"oxfmt": "catalog:dev",
"oxlint": "catalog:dev",
"oxlint-tsgolint": "catalog:dev",
"tsdown": "catalog:dev",
"typescript": "catalog:dev",
"vitest": "catalog:dev",
"vitest-testdirs": "catalog:dev"
},
"packageManager": "pnpm@10.33.0",
"inlinedDependencies": {
"eta": "4.5.1"
}
}