-
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) · 965 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 965 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": "replanejs",
"private": true,
"type": "module",
"description": "Replane JavaScript SDKs monorepo",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"lint": "eslint packages --max-warnings 0",
"lint:fix": "eslint packages --fix",
"format": "prettier --write \"packages/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"packages/**/*.{ts,tsx}\"",
"clean": "pnpm -r exec rm -rf dist node_modules",
"release": "bumpp -r --commit 'chore: release v%s' --tag 'v%s' --push"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"bumpp": "^10.1.0",
"@types/node": "^25.0.3",
"eslint": "^9.18.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"prettier": "^3.6.2",
"typescript": "^5.4.0",
"typescript-eslint": "^8.20.0"
},
"packageManager": "pnpm@10.25.0",
"engines": {
"node": ">=18.0.0"
}
}