-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 787 Bytes
/
package.json
File metadata and controls
33 lines (32 loc) · 787 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
{
"name": "one-line-monorepo",
"version": "1.0.0",
"private": true,
"description": "Combine multiple terminal commands into single named shortcuts",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bash scripts/build.sh",
"build:workspaces": "npm run build --workspaces",
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules",
"package:cli": "bash scripts/package-cli.sh",
"test": "npm run test --workspaces"
},
"keywords": [
"cli",
"command",
"alias",
"productivity"
],
"author": "Mykyta Grogul",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Mykyta-G/One-Line.git"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.3"
}
}