-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 842 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 842 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": "ultralight",
"type": "module",
"private": true,
"workspaces": [
"packages/portalnetwork",
"packages/cli"
],
"engines": {
"npm": "^10",
"node": "^22"
},
"scripts": {
"biome": "npx @biomejs/biome check --write --config-path ./config/biome.json",
"postinstall": "npm run build --workspaces --if-present",
"start-cli": "npm run dev -w=cli",
"lint": "eslint --config ./config/eslint.config.mjs .",
"lint:fix": "eslint --fix --config ./config/eslint.config.mjs .",
"clean": "bash ./scripts/clean-root.sh"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"tslib": "^2.3.1",
"tsx": "^4.19.2",
"typedoc": "^0.28.0",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^5.8.2"
}
}