-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 765 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 765 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
{
"name": "sourcepower",
"private": true,
"version": "1.0.0",
"description": "source code of sub system",
"homepage": "https://github.com/Hiram-Wong/sourcepower",
"license": "MIT",
"author": "hiram@catni.cn",
"repository": "github:Hiram-Wong/sourcepower",
"engines": {
"node": ">= 18"
},
"packageManager": "pnpm@8.6.12",
"scripts": {
"install": "turbo run post-install --parallel --no-cache",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,mjs,js,jsx,md,css}\""
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"turbo": "^1.11.2",
"typescript": "^5.7.2"
},
"dependencies": {
}
}