pubm 0.0.5 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,86 +1,94 @@
1
1
  {
2
- "name": "pubm",
3
- "version": "0.0.5",
4
- "engines": {
5
- "node": ">=18",
6
- "git": ">=2.11.0"
7
- },
8
- "description": "publish manager for multiple registry (jsr, npm and private registries)",
9
- "type": "module",
10
- "author": "Sung Yein <syi778800@gmail.com>",
11
- "types": "./dist/index.d.ts",
12
- "main": "./dist/index.cjs",
13
- "module": "./dist/index.js",
14
- "bin": {
15
- "pubm": "bin/cli.js"
16
- },
17
- "files": ["dist", "bin"],
18
- "exports": {
19
- ".": {
20
- "types": "./dist/index.d.ts",
21
- "import": "./dist/index.js",
22
- "require": "./dist/index.cjs"
23
- }
24
- },
25
- "scripts": {
26
- "watch": "tsup --watch",
27
- "build": "tsup",
28
- "check": "biome check",
29
- "format": "pnpm check --write",
30
- "typecheck": "tsc --noEmit",
31
- "test": "vitest --run",
32
- "coverage": "vitest --run --coverage",
33
- "release": "pubm --no-publish",
34
- "ci:release": "pubm --publish-only"
35
- },
36
- "dependencies": {
37
- "@listr2/prompt-adapter-enquirer": "^2.0.12",
38
- "@npmcli/promise-spawn": "^8.0.1",
39
- "cac": "^6.7.14",
40
- "enquirer": "^2.4.1",
41
- "listr2": "^8.2.5",
42
- "semver": "^7.6.3",
43
- "std-env": "^3.7.0",
44
- "tinyexec": "^0.3.0"
45
- },
46
- "devDependencies": {
47
- "@biomejs/biome": "^1.9.2",
48
- "@types/node": "^22.7.4",
49
- "@types/npm": "^7.19.3",
50
- "@types/npmcli__promise-spawn": "^6.0.3",
51
- "@types/semver": "^7.5.8",
52
- "@vitest/coverage-v8": "^2.1.1",
53
- "jsr": "^0.13.2",
54
- "pubm": "^0.0.2-14",
55
- "tsup": "^8.3.0",
56
- "typescript": "^5.6.2",
57
- "vitest": "^2.1.1"
58
- },
59
- "license": "MIT",
60
- "publishConfig": {
61
- "access": "public"
62
- },
63
- "packageManager": "pnpm@9.11.0",
64
- "repository": {
65
- "type": "git",
66
- "url": "git+https://github.com/syi0808/pubm.git"
67
- },
68
- "bugs": {
69
- "url": "https://github.com/syi0808/pubm/issues"
70
- },
71
- "keywords": [
72
- "npm",
73
- "jsr",
74
- "registry",
75
- "publish",
76
- "np",
77
- "publish manager",
78
- "private registry",
79
- "multiple publish"
80
- ],
81
- "pnpm": {
82
- "patchedDependencies": {
83
- "listr2": "patches/listr2.patch"
84
- }
85
- }
2
+ "name": "pubm",
3
+ "version": "0.1.3",
4
+ "engines": {
5
+ "node": ">=18",
6
+ "git": ">=2.11.0"
7
+ },
8
+ "description": "publish manager for multiple registry (jsr, npm and private registries)",
9
+ "type": "module",
10
+ "author": "Yein Sung <syi778800@gmail.com>",
11
+ "types": "./dist/index.d.ts",
12
+ "main": "./dist/index.cjs",
13
+ "module": "./dist/index.js",
14
+ "bin": {
15
+ "pubm": "bin/cli.js"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "bin"
20
+ ],
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.js",
25
+ "require": "./dist/index.cjs"
26
+ }
27
+ },
28
+ "scripts": {
29
+ "watch": "tsup --watch",
30
+ "build": "tsup",
31
+ "check": "biome check",
32
+ "format": "pnpm check --write",
33
+ "typecheck": "tsc --noEmit",
34
+ "test": "vitest --run",
35
+ "coverage": "vitest --run --coverage",
36
+ "release": "pnpm build && node bin/cli.js --no-publish",
37
+ "ci:release": "node bin/cli.js --publish-only"
38
+ },
39
+ "dependencies": {
40
+ "@listr2/prompt-adapter-enquirer": "^2.0.12",
41
+ "@npmcli/promise-spawn": "^8.0.1",
42
+ "cac": "^6.7.14",
43
+ "enquirer": "^2.4.1",
44
+ "jiti": "^2.6.1",
45
+ "listr2": "^8.2.5",
46
+ "micromatch": "^4.0.8",
47
+ "semver": "^7.6.3",
48
+ "smol-toml": "^1.6.0",
49
+ "std-env": "^3.7.0",
50
+ "tinyexec": "^0.3.0",
51
+ "update-kit": "^0.1.1",
52
+ "yaml": "^2.8.2"
53
+ },
54
+ "devDependencies": {
55
+ "@biomejs/biome": "2.4.4",
56
+ "@types/micromatch": "^4.0.10",
57
+ "@types/node": "^22.7.4",
58
+ "@types/npm": "^7.19.3",
59
+ "@types/npmcli__promise-spawn": "^6.0.3",
60
+ "@types/semver": "^7.5.8",
61
+ "@vitest/coverage-v8": "^2.1.1",
62
+ "jsr": "^0.13.2",
63
+ "tsup": "^8.3.0",
64
+ "typescript": "^5.6.2",
65
+ "vitest": "^2.1.1"
66
+ },
67
+ "license": "MIT",
68
+ "publishConfig": {
69
+ "access": "public"
70
+ },
71
+ "packageManager": "pnpm@9.11.0",
72
+ "repository": {
73
+ "type": "git",
74
+ "url": "git+https://github.com/syi0808/pubm.git"
75
+ },
76
+ "bugs": {
77
+ "url": "https://github.com/syi0808/pubm/issues"
78
+ },
79
+ "keywords": [
80
+ "npm",
81
+ "jsr",
82
+ "registry",
83
+ "publish",
84
+ "np",
85
+ "publish manager",
86
+ "private registry",
87
+ "multiple publish"
88
+ ],
89
+ "pnpm": {
90
+ "patchedDependencies": {
91
+ "listr2": "patches/listr2.patch"
92
+ }
93
+ }
86
94
  }