-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
{
"name": "panam-monorepo",
"type": "module",
"license": "MIT",
"private": true,
"description": "A universal command-line tool that simplifies running package manager commands across different environments (npm, cnpm, pnpm, yarn, bun, deno) with a unified interface.",
"scripts": {
"build": "pnpm build:core && pnpm build:cli",
"build:core": "pnpm -C ./packages/core build",
"build:cli": "pnpm -C ./packages/cli build",
"check": "pnpm run ci && pnpm check:packages",
"ci": "biome ci .",
"check:packages": "pnpm check:core && pnpm check:cli",
"check:core": "pnpm -C ./packages/core check",
"check:cli": "pnpm -C ./packages/cli check",
"check:format": "biome format .",
"check:lint": "biome check .",
"fix": "pnpm lint && pnpm format",
"format": "biome format --write .",
"lint": "biome check --write .",
"test": "pnpm test:core && pnpm test:cli",
"test:core": "pnpm -C ./packages/core test",
"test:cli": "pnpm -C ./packages/cli test",
"changeset": "changeset",
"release": "pnpm build && changeset publish",
"prepare": "husky && gitmoji -i"
},
"author": "Sigui Kessé Emmanuel <[email protected]>",
"repository": "git+https://github.com/siguici/panam.git",
"homepage": "https://github.com/siguici/panam/tree/main#readme",
"keywords": [
"bun",
"ci",
"cli",
"cnpm",
"crosspm",
"cross-pm",
"deno",
"node",
"npm",
"omnipm",
"omni-pm",
"package-manager",
"panam",
"panpm",
"pan-pm",
"pnpm",
"yarn"
],
"publishConfig": {
"access": "public"
},
"bugs": "https://github.com/siguici/panam/issues",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.11",
"gitmoji-cli": "^9.5.0",
"husky": "^9.1.7",
"pkg-pr-new": "^0.0.39"
}
}