-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.15 KB
/
package.json
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": "aisenv-monorepo",
"description": "The monorepo of aisenv.",
"type": "module",
"private": true,
"scripts": {
"format": "pnpm run root:format && pnpm --filter=aisenv --filter=docs format",
"format-check": "pnpm run root:format-check && pnpm --filter=aisenv --filter=docs format-check",
"lint": "pnpm --filter=aisenv run lint",
"lint-check": "pnpm --filter=aisenv run lint-check",
"typecheck": "pnpm --filter=aisenv run typecheck",
"test": "pnpm --filter=aisenv run test",
"build": "pnpm --filter=aisenv run build",
"root:format": "prettier --write *.{js,json}",
"root:format-check": "prettier --write *.{js,json}",
"docs:dev": "pnpm --filter=docs docs:dev",
"docs:build": "pnpm --filter=docs docs:build",
"docs:preview": "pnpm --filter=docs docs:preview"
},
"author": "Take-John",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript-eslint": "^8.18.1"
}
}