This repository was archived by the owner on Oct 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.88 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.88 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "gensx-monorepo",
"private": true,
"type": "module",
"packageManager": "pnpm@9.12.2",
"scripts": {
"build": "turbo run build --filter=\"./packages/*\"",
"build:examples": "turbo run build --filter=\"./examples/*\"",
"build:home": "turbo run build --filter=\"./website/home\"",
"build:docs": "turbo run build --filter=\"./website/docs\"",
"build:all": "turbo run build",
"dev": "turbo watch build --filter=\"./packages/*\"",
"lint": "turbo run lint --filter=\"./packages/*\"",
"lint:examples": "turbo run lint --filter=\"./examples/*\"",
"lint:all": "turbo run lint",
"lint:fix": "turbo run lint:fix --filter=\"./packages/*\"",
"lint:fix:examples": "turbo run lint:fix --filter=\"./examples/*\"",
"lint:fix:all": "turbo run lint:fix",
"test": "turbo run test --filter=\"./packages/*\"",
"test:examples": "turbo run test --filter=\"./examples/*\"",
"test:types": "turbo run test:types --filter=\"./packages/*\"",
"test:all": "turbo run test",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"devDependencies": {
"@rollup/plugin-commonjs": "catalog:",
"@rollup/plugin-node-resolve": "catalog:",
"@rollup/plugin-typescript": "catalog:",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.28.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-n": "catalog:",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.5.3",
"rollup": "catalog:",
"turbo": "^2.5.4",
"typescript": "catalog:",
"vite": "catalog:"
},
"dependencies": {
"@tsconfig/node20": "^20.1.5",
"tsx": "catalog:",
"vitest": "catalog:"
}
}