-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 969 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 969 Bytes
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
{
"name": "@trigen/scripts",
"type": "module",
"version": "8.0.0",
"description": "CLI tool for running scripts.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/scripts.git",
"directory": "packages/scripts"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/scripts/issues"
},
"keywords": [
"scripts",
"tasks",
"runner"
],
"engines": {
"node": ">=20"
},
"bin": {
"run": "./src/run.js"
},
"exports": "./src/index.js",
"publishConfig": {
"access": "public",
"directory": "package",
"linkDirectory": false
},
"scripts": {
"prepublishOnly": "del ./package && clean-publish",
"postpublish": "del ./package"
},
"dependencies": {
"@simple-libs/child-process-utils": "^1.0.1",
"@simple-libs/stream-utils": "^1.1.0",
"argue-cli": "^2.0.0",
"dotenv": "^16.0.0",
"p-limit": "^6.0.0"
}
}