forked from Ian-stetsenko/lore-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 899 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 899 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": "lore-monorepo",
"private": true,
"version": "0.0.0",
"description": "Monorepo for Atom Engine and Lore Protocol",
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "eslint packages/*/src packages/*/tests",
"format": "prettier --write packages/*/src packages/*/tests",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.13.14",
"eslint": "^10.4.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"prettier": "^3.5.3",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.8"
}
}