-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.06 KB
/
package.json
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
{
"name": "monorun",
"version": "0.3.0",
"description": "Intelligently detects and runs scripts specific to your project's directory in the terminal.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/homoky/monorun"
},
"scripts": {
"start": "npm run build && node ./dist/index.js",
"dev": "npm run build && npm link",
"build": "tsc && esbuild --bundle --platform=node --format=cjs --outdir=dist src/index.ts"
},
"keywords": [
"monorepo",
"script runner",
"yarn",
"npm",
"pnpm",
"bun"
],
"author": "Petr Homoky",
"license": "ISC",
"bin": {
"monorun": "./dist/index.js",
"mrun": "./dist/index.js",
"run": "./dist/index.js"
},
"files": [
"dist"
],
"dependencies": {
"detect-package-manager": "^3.0.1",
"enquirer": "^2.4.1",
"pkg-dir": "^7.0.0",
"prompts": "^2.4.2",
"root-pkg-json": "^1.0.2"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/prompts": "^2.4.9",
"esbuild": "^0.19.10",
"typescript": "^5.3.3"
}
}