-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.04 KB
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
33
34
35
{
"private": true,
"name": "logpot-repo",
"version": "1.0.7",
"packageManager": "yarn@4.9.2",
"type": "module",
"sideEffects": false,
"workspaces": [
"packages/*"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.31.0",
"@stylistic/eslint-plugin": "^5.2.2",
"@types/node": "^24.0.7",
"esbuild": "^0.25.5",
"eslint": "^9.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.4.0",
"tsdown": "^0.13.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.3"
},
"files": [],
"scripts": {
"build": "yarn workspaces foreach --no-private --all --verbose --topological -- run build",
"lint": "yarn workspaces foreach --no-private --all --verbose --topological -- run lint",
"bundle": "yarn tsx --no-warnings scripts/bundle.ts && eslint 'packages/**/*.d.ts' --fix",
"test": "vitest",
"package": "yarn workspaces foreach --no-private --all --parallel pack"
}
}