-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 831 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 831 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": "@atxp-dev/cli-monorepo",
"version": "1.23.2",
"description": "ATXP CLI tools for creating projects and running demos",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/atxp-dev/cli.git"
},
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"typecheck": "npm run typecheck --workspaces",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint:fix --workspaces",
"test": "npm run test --workspaces"
},
"devDependencies": {
"@types/node": "^22.13.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
}
}