-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.5 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.5 KB
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
{
"name": "@gabsf-dev/run-script",
"version": "3.0.1",
"description": "The effortlessly way to run your js scripts",
"main": "./dist/index.js",
"bin": {
"run-script": "dist/index.js"
},
"scripts": {
"build": "tsup src/index.ts --format esm --clean",
"test": "vitest run",
"dev": "tsx src/index.ts"
},
"keywords": [
"run-script",
"rs",
"run",
"script",
"package.json",
"npm",
"yarn",
"pnpm",
"cli",
"command",
"terminal",
"console",
"execute",
"shell",
"cross-platform",
"node",
"typescript",
"javascript",
"productivity",
"developer",
"tool",
"utility",
"automation",
"workflow",
"task-runner",
"package-manager",
"package-manager-detector",
"commander",
"figlet",
"inquirer",
"console-table-printer"
],
"author": "gabrielf.dev",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/gabsf-dev/run-script.git"
},
"homepage": "https://github.com/gabsf-dev/run-script/blob/main/README.md",
"dependencies": {
"@inquirer/prompts": "^8.4.3",
"@types/figlet": "^1.7.0",
"commander": "^14.0.3",
"console-table-printer": "^2.15.0",
"figlet": "^1.11.0",
"package-manager-detector": "^1.6.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.28.5",
"@types/node": "^25.8.0",
"tsup": "^8.5.1",
"tsx": "^4.22.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}