-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) 路 1.6 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) 路 1.6 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "vitest",
"clean": "turbo run clean",
"watch": "turbo run watch --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\" --config ./prettier.config.mjs",
"version-packages": "changeset version",
"release": "pnpm run build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.31.0",
"@solidjs/start": "^1.2.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.0.14",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/ui": "^3.2.4",
"eslint": "^9.31.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"jest": "^30.0.4",
"jsdom": "^26.1.0",
"monaco-editor": "^0.52.2",
"prettier": "^3.6.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rollup-plugin-visualizer": "^6.0.3",
"turbo": "^2.5.5",
"typescript-eslint": "^8.46.3",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-strip-comments": "^0.0.6",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"prismjs": "^1.30.0",
"rollup": ">=4.59.0",
"picomatch": ">=4.0.4",
"serialize-javascript": ">=7.0.5",
"node-forge": ">=1.4.0",
"yaml": ">=2.8.3",
"flatted": ">=3.4.2",
"tar": ">=7.5.11",
"minimatch": ">=3.1.4",
"brace-expansion": ">=2.0.3 <3.0.0",
"h3": ">=1.15.9"
}
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": "^22.0.0",
"pnpm": "^10.0.0"
}
}