-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.5 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.5 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
{
"name": "erode-monorepo",
"version": "0.9.1",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "npm run build --workspace=packages/core && npm run build --workspace=packages/cli",
"build:ci": "npm run build --workspace=packages/core",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"format": "prettier --write .",
"format:check": "prettier --check .",
"knip": "knip",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:md:fix": "markdownlint-cli2 --fix \"**/*.md\"",
"lint:python": "ruff check",
"format:python": "ruff format",
"format:python:check": "ruff format --check",
"check:ci": "npm run build:ci && npm run check:ci --workspaces --if-present && npm run lint:md && npm run knip",
"build:web": "npm run build --workspace=packages/architecture && npm run build --workspace=packages/web",
"cli": "tsx --tsconfig packages/cli/tsconfig.json packages/cli/src/cli.ts",
"dev:web": "npm run dev --workspace=packages/web",
"dev:arch": "npm run dev --workspace=packages/architecture"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"knip": "^6.9.0",
"markdownlint-cli2": "^0.22.1",
"prettier": "^3.7.3"
}
}