-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
41
42
43
44
{
"name": "@toolcase/root",
"private": true,
"scripts": {
"build": "npm run build --workspaces",
"test": "vitest run",
"lint": "eslint .",
"lint:exports": "publint base && publint logging && publint serializer && publint react-components",
"format": "prettier --write ."
},
"workspaces": [
"base",
"logging",
"serializer",
"react-components",
"examples"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"concurrently": "9.2.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"publint": "^0.3.18",
"tsup": "^8.5.1",
"typescript": "6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
},
"license": "MIT",
"author": {
"name": "Daniel Kalevski"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalevski/toolcase.git"
},
"bugs": {
"url": "https://github.com/kalevski/toolcase/issues"
},
"engines": {
"node": ">=18"
}
}