@pnpm/exec.commands 1001.0.15
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/LICENSE +22 -0
- package/README.md +15 -0
- package/lib/buildCommandNotFoundHint.d.ts +10 -0
- package/lib/buildCommandNotFoundHint.js +46 -0
- package/lib/create.d.ts +8 -0
- package/lib/create.js +94 -0
- package/lib/dlx.d.ts +24 -0
- package/lib/dlx.js +290 -0
- package/lib/exec.d.ts +34 -0
- package/lib/exec.js +328 -0
- package/lib/existsInDir.d.ts +1 -0
- package/lib/existsInDir.js +9 -0
- package/lib/index.d.ts +6 -0
- package/lib/index.js +7 -0
- package/lib/makeEnv.d.ts +10 -0
- package/lib/makeEnv.js +20 -0
- package/lib/regexpCommand.d.ts +1 -0
- package/lib/regexpCommand.js +21 -0
- package/lib/restart.d.ts +6 -0
- package/lib/restart.js +35 -0
- package/lib/run.d.ts +50 -0
- package/lib/run.js +336 -0
- package/lib/runDepsStatusCheck.d.ts +8 -0
- package/lib/runDepsStatusCheck.js +74 -0
- package/lib/runRecursive.d.ts +9 -0
- package/lib/runRecursive.js +173 -0
- package/package.json +97 -0
package/package.json
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pnpm/exec.commands",
|
|
3
|
+
"version": "1001.0.15",
|
|
4
|
+
"description": "Commands for running scripts",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pnpm",
|
|
7
|
+
"pnpm11",
|
|
8
|
+
"scripts"
|
|
9
|
+
],
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"funding": "https://opencollective.com/pnpm",
|
|
12
|
+
"repository": "https://github.com/pnpm/pnpm/tree/main/exec/commands",
|
|
13
|
+
"homepage": "https://github.com/pnpm/pnpm/tree/main/exec/commands#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/pnpm/pnpm/issues"
|
|
16
|
+
},
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "lib/index.js",
|
|
19
|
+
"types": "lib/index.d.ts",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": "./lib/index.js"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"lib",
|
|
25
|
+
"!*.map"
|
|
26
|
+
],
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@pnpm/log.group": "3.0.1",
|
|
29
|
+
"@pnpm/util.lex-comparator": "^3.0.2",
|
|
30
|
+
"@zkochan/rimraf": "^4.0.0",
|
|
31
|
+
"didyoumean2": "^7.0.4",
|
|
32
|
+
"enquirer": "^2.4.1",
|
|
33
|
+
"execa": "npm:safe-execa@0.3.0",
|
|
34
|
+
"p-limit": "^7.1.0",
|
|
35
|
+
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
36
|
+
"realpath-missing": "^2.0.0",
|
|
37
|
+
"render-help": "^2.0.0",
|
|
38
|
+
"symlink-dir": "^7.0.0",
|
|
39
|
+
"which": "npm:@pnpm/which@^3.0.1",
|
|
40
|
+
"write-json-file": "^7.0.0",
|
|
41
|
+
"@pnpm/catalogs.resolver": "1000.0.5",
|
|
42
|
+
"@pnpm/cli.command": "1000.0.0",
|
|
43
|
+
"@pnpm/bins.resolver": "1000.0.11",
|
|
44
|
+
"@pnpm/config.version-policy": "1000.0.0",
|
|
45
|
+
"@pnpm/cli.utils": "1001.2.8",
|
|
46
|
+
"@pnpm/cli.common-cli-options-help": "1000.0.1",
|
|
47
|
+
"@pnpm/config.reader": "1004.4.2",
|
|
48
|
+
"@pnpm/crypto.hash": "1000.2.1",
|
|
49
|
+
"@pnpm/core-loggers": "1001.0.4",
|
|
50
|
+
"@pnpm/deps.status": "1003.0.15",
|
|
51
|
+
"@pnpm/engine.runtime.commands": "1000.0.0-0",
|
|
52
|
+
"@pnpm/error": "1000.0.5",
|
|
53
|
+
"@pnpm/exec.lifecycle": "1001.0.25",
|
|
54
|
+
"@pnpm/installing.client": "1001.1.4",
|
|
55
|
+
"@pnpm/exec.pnpm-cli-runner": "1000.0.1",
|
|
56
|
+
"@pnpm/resolving.parse-wanted-dependency": "1001.0.0",
|
|
57
|
+
"@pnpm/pkg-manifest.reader": "1000.1.2",
|
|
58
|
+
"@pnpm/shell.path": "1000.0.0",
|
|
59
|
+
"@pnpm/installing.commands": "1004.6.10",
|
|
60
|
+
"@pnpm/store.path": "1000.0.5",
|
|
61
|
+
"@pnpm/types": "1000.9.0",
|
|
62
|
+
"@pnpm/workspace.injected-deps-syncer": "1000.0.17",
|
|
63
|
+
"@pnpm/workspace.projects-sorter": "1000.0.11",
|
|
64
|
+
"@pnpm/workspace.project-manifest-reader": "1001.1.4"
|
|
65
|
+
},
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"@pnpm/logger": ">=1001.0.0 <1002.0.0"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@jest/globals": "30.0.5",
|
|
71
|
+
"@pnpm/registry-mock": "5.2.4",
|
|
72
|
+
"@types/is-windows": "^1.0.2",
|
|
73
|
+
"@types/ramda": "0.29.12",
|
|
74
|
+
"@types/which": "^2.0.2",
|
|
75
|
+
"is-windows": "^1.0.2",
|
|
76
|
+
"write-yaml-file": "^6.0.0",
|
|
77
|
+
"@pnpm/exec.commands": "1001.0.15",
|
|
78
|
+
"@pnpm/logger": "1001.0.1",
|
|
79
|
+
"@pnpm/prepare": "1000.0.4",
|
|
80
|
+
"@pnpm/workspace.projects-filter": "1000.0.43",
|
|
81
|
+
"@pnpm/test-ipc-server": "1000.0.0",
|
|
82
|
+
"@pnpm/engine.runtime.system-node-version": "1000.0.11"
|
|
83
|
+
},
|
|
84
|
+
"engines": {
|
|
85
|
+
"node": ">=22.13"
|
|
86
|
+
},
|
|
87
|
+
"jest": {
|
|
88
|
+
"preset": "@pnpm/jest-config/with-registry"
|
|
89
|
+
},
|
|
90
|
+
"scripts": {
|
|
91
|
+
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
92
|
+
"_test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --disable-warning=ExperimentalWarning --disable-warning=DEP0169\" jest",
|
|
93
|
+
"test": "pnpm run compile && pnpm run _test",
|
|
94
|
+
"start": "tsgo --watch",
|
|
95
|
+
"compile": "tsgo --build && pnpm run lint --fix"
|
|
96
|
+
}
|
|
97
|
+
}
|