-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.68 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "panam",
"type": "module",
"license": "MIT",
"version": "0.2.2",
"description": "A universal tool for managing package managers with a unified API. Run commands across npm, pnpm, yarn, bun, deno, jsr, and more with ease",
"scripts": {
"check": "tsc --noEmit",
"build": "tsup-node --env.NODE_ENV production",
"start": "tsup-node --env.NODE_ENV development --watch",
"test": "node --loader tsm --enable-source-maps bin/test.ts"
},
"author": "Sigui Kessé Emmanuel <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/siguici/panam",
"directory": "packages/cli"
},
"homepage": "https://siguici.github.io/panam",
"publishConfig": {
"access": "public"
},
"bugs": "https://github.com/siguici/panam/issues",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./git": {
"types": "./dist/git.d.ts",
"import": "./dist/git.js",
"require": "./dist/git.cjs",
"default": "./dist/git.js"
},
"./pm": {
"types": "./dist/pm.d.ts",
"import": "./dist/pm.js",
"require": "./dist/pm.cjs",
"default": "./dist/pm.js"
},
"./process": {
"types": "./dist/process.d.ts",
"import": "./dist/process.js",
"require": "./dist/process.cjs",
"default": "./dist/process.js"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.js",
"require": "./dist/runtime.cjs",
"default": "./dist/runtime.js"
},
"./tool": {
"types": "./dist/tool.d.ts",
"import": "./dist/tool.js",
"require": "./dist/tool.cjs",
"default": "./dist/tool.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.js",
"require": "./dist/utils.cjs",
"default": "./dist/utils.js"
},
"./package.json": "./package.json"
},
"keywords": [
"bun",
"ci",
"cnpm",
"crosspm",
"cross-pm",
"deno",
"jsr",
"node",
"npm",
"omnipm",
"omni-pm",
"package-manager",
"panam",
"panpm",
"pan-pm",
"pnpm",
"yarn"
],
"dependencies": {
"cross-spawn": "^7.0.6",
"which": "^5.0.0"
},
"devDependencies": {
"@japa/assert": "^4.0.1",
"@japa/runner": "^4.1.0",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.10.7",
"@types/which": "^3.0.4",
"@types/which-pm-runs": "^1.0.2",
"tslib": "^2.8.1",
"tsm": "^2.3.0",
"tsup": "^8.3.5",
"typescript": "^5.7.3"
}
}