-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "@gabsf-dev/run-script",
"version": "1.0.2",
"description": "The effortlessly way to run your package.json scripts",
"main": "./dist/index.js",
"bin": {
"run-script": "./dist/index.js"
},
"scripts": {
"build": "npx tsc",
"test": "jest"
},
"keywords": [
"run-script",
"run",
"script",
"package.json"
],
"author": "gabrielf.dev",
"license": "MIT",
"type": "commonjs",
"repository": "https://github.com/gabsf-dev/run-script",
"homepage": "https://github.com/gabsf-dev/run-script/blob/main/README.md",
"dependencies": {
"@types/figlet": "^1.7.0",
"commander": "^13.1.0",
"console-table-printer": "^2.12.1",
"figlet": "^1.8.0",
"inquirer": "^12.4.3"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}