-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.36 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.36 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
{
"name": "rs-runner",
"version": "1.5.1",
"packageManager": "pnpm@10.6.1",
"keywords": [
"rs",
"cli",
"script-runner",
"package-manager",
"npm",
"yarn",
"pnpm",
"bun",
"deno",
"global-scripts",
"directory-scripts",
"command-line-tool",
"developer-tools"
],
"bin": {
"rs": "./dist/index.js"
},
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"dev": "tsc -w",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsingason/rs.git"
},
"description": "RS is a CLI tool for quickly detecting package.json scripts, and running them.",
"homepage": "https://jsingason.github.io/rs",
"bugs": {
"url": "https://github.com/jsingason/rs/issues"
},
"author": "Jóhann S. Ingason <jsingason@gmail.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/inquirer": "^8.2.12",
"@types/jest": "^29.5.13",
"@types/node": "^25.0.0",
"eslint": "^9.18.0",
"jest": "^30.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.4.6",
"typescript": "^5.9.0",
"typescript-eslint": "^8.21.0"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^14.0.0",
"inquirer": "^8.2.6"
},
"directories": {
"test": "tests"
}
}