-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.83 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pubm",
"version": "0.0.5",
"engines": {
"node": ">=18",
"git": ">=2.11.0"
},
"description": "publish manager for multiple registry (jsr, npm and private registries)",
"type": "module",
"author": "Sung Yein <[email protected]>",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"bin": {
"pubm": "bin/cli.js"
},
"files": ["dist", "bin"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"watch": "tsup --watch",
"build": "tsup",
"check": "biome check",
"format": "pnpm check --write",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"coverage": "vitest --run --coverage",
"release": "pubm --no-publish",
"ci:release": "pubm --publish-only"
},
"dependencies": {
"@listr2/prompt-adapter-enquirer": "^2.0.12",
"@npmcli/promise-spawn": "^8.0.1",
"cac": "^6.7.14",
"enquirer": "^2.4.1",
"listr2": "^8.2.5",
"semver": "^7.6.3",
"std-env": "^3.7.0",
"tinyexec": "^0.3.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/node": "^22.7.4",
"@types/npm": "^7.19.3",
"@types/npmcli__promise-spawn": "^6.0.3",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^2.1.1",
"jsr": "^0.13.2",
"pubm": "^0.0.2-14",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/syi0808/pubm.git"
},
"bugs": {
"url": "https://github.com/syi0808/pubm/issues"
},
"keywords": [
"npm",
"jsr",
"registry",
"publish",
"np",
"publish manager",
"private registry",
"multiple publish"
],
"pnpm": {
"patchedDependencies": {
"listr2": "patches/listr2.patch"
}
}
}