-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 796 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 796 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
{
"name": "money-engine-workflows-root",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Root of Money Engine Workflows OSS Project",
"engines": {
"node": ">=20.19"
},
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "npm install",
"build": "npm run build --workspaces --if-present",
"cli": "node packages/cli/dist/index.js",
"validate": "node packages/cli/dist/index.js validate workflows",
"list": "node packages/cli/dist/index.js list",
"docs": "node packages/cli/dist/index.js docs",
"lint": "eslint .",
"test": "vitest run"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.8"
}
}