-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.22 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.22 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
{
"name": "monojs",
"version": "0.0.1",
"description": "This is an opinionated, dirty, bikeshed based monorepo tool and framework for building and deploying multiple projects with very few options and customizability",
"main": "index.js",
"type": "module",
"scripts": {
"quick-build": "npm run build -w @mono/validations && npm run build -w @mono/templates && npm run build -w @mono/logic && npm run build -w @mono/cmds && npm run build -w @mono/monojs",
"bootstrap": "npm ci && npm run quick-build && npm run ins",
"ins": "npm i ./clis/@mono/monojs -g"
},
"author": "coffeeb4code",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/minimist": "^1.2.5",
"@types/node": "^20.17.30",
"@types/uuid": "^10.0.0",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsdoc": "^50.6.9",
"jest": "^29.7.0",
"jsdoc": "^4.0.4",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"dependencies": {
"minimist": "^1.2.8",
"uuid": "^9.0.1"
},
"workspaces": [
"packages/@mono/templates",
"packages/@mono/validations",
"clis/@mono/monojs",
"packages/@mono/cmds",
"packages/@mono/logic"
]
}