-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.16 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.16 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "triplex_monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"examples/*",
"packages/*",
"packages/*/*",
"!packages/create-triplex-project/*"
],
"scripts": {
"build": "pnpm clean && pnpm --filter @triplex/* --filter create-triplex-project --filter triplex-vsce build",
"build:types": "pnpm --filter @triplex/* --filter create-triplex-project typedef",
"ci:publish": "pnpm build && pnpm build:types && node ./scripts/ensure-clean-git.js && pnpm clean:drop-folders && pnpm publish --recursive --access=public --no-git-checks --provenance && changeset tag",
"ci:version": "changeset version && pnpm install --lockfile-only",
"clean": "pnpm -r exec rimraf dist out targets playwright-report test-results",
"clean:drop-folders": "pnpm --filter @triplex/* --filter create-triplex-project --filter triplex-vsce -r exec rimraf --glob src/** dist/**/__tests__ dist/**/__test__ --impl=move-remove --max-retries=100",
"clean:node_modules": "pnpm -r exec rimraf node_modules && rimraf node_modules",
"dev:cloud": "pnpm --filter @triplex/cloud dev",
"dev:docs": "pnpm --filter @docs/triplex dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"install-git-hooks": "husky install",
"lint": "eslint ./ --cache",
"test": "vitest",
"test:e2e": "playwright test"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix"
},
"dependencies": {
"@changesets/cli": "^2.27.8",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@nkzw/eslint-config": "^1.19.0",
"@playwright/test": "^1.50.1",
"@swc/core": "^1.6.5",
"@testing-library/react": "^14.0.0",
"@triplex/lib": "workspace:*",
"@ts-morph/common": "*",
"@types/react": "^19.1.6",
"@vscode/test-electron": "^2.3.9",
"cross-env": "^7.0.3",
"eslint": "^8.51.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"husky": "^9.0.11",
"jsdom": "^21.1.0",
"lint-staged": "^15.2.7",
"msw": "^2.7.0",
"prettier": "^3.3.2",
"prettier-plugin-glsl": "^0.2.0",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"react-compiler-runtime": "19.1.0-rc.2",
"react-three-test": "*",
"rimraf": "^5.0.7",
"typescript": "^5.8.3",
"vite-plugin-glsl": "^1.4.1",
"vitest": "^3.1.3"
},
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=20.14.0"
},
"volta": {
"node": "22.15.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"electron",
"esbuild",
"msw",
"sharp"
],
"overrides": {
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"esbuild": "^0.24.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vite": "^6.0.7"
},
"patchedDependencies": {
"@httptoolkit/httpolyglot": "patches/@httptoolkit__httpolyglot.patch",
"@vscode/vsce@2.26.0": "patches/@vscode__vsce@2.26.0.patch",
"react-refresh": "patches/react-refresh.patch"
},
"ignoredBuiltDependencies": [
"keytar"
]
}
}