forked from adrianbrowning/ts-type-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.19 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.19 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
{
"name": "ts-type-debugger",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "vitest run",
"test:unit": "vitest run src",
"test:integration": "vitest run tests/integration",
"test:ui": "vitest run --config vitest.browser.config.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:vitest": "pnpm test:unit && pnpm test:integration && pnpm test:ui",
"test:all": "vitest run && vitest run --config vitest.browser.config.ts && playwright test",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:ts": "tsc --noEmit",
"_esl": "eslint \"{src,tests}/**/*.{j,t}s{,x}\" --cache --max-warnings=0 ",
"lint:esl": "pnpm _esl --config eslint.config.ts",
"lint:s": "pnpm _esl --config eslint.config.style.ts",
"lint:fix": "pnpm lint:s --fix",
"knip": "knip",
"lint": "pnpm lint:ts; pnpm lint:fix"
},
"keywords": [],
"author": "Adrian Elton-Browning",
"license": "MIT",
"packageManager": "pnpm@10.20.0",
"type": "module",
"devDependencies": {
"@commitlint/cli": "20.0.0",
"@commitlint/config-conventional": "20.0.0",
"@gingacodemonkey/config": "^0.0.31",
"@playwright/test": "^1.57.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/browser": "^4.0.15",
"@vitest/browser-playwright": "^4.0.15",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/ui": "^4.0.15",
"eslint": "^9.39.2",
"husky": "9.0.6",
"knip": "5.70.1",
"lint-staged": "15.2.10",
"playwright": "^1.57.0",
"vite": "^7.0.0",
"vitest": "^4.0.15"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@typescript/vfs": "^1.6.2",
"lz-string": "^1.5.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"shiki": "^3.15.0",
"split-pane-react": "^0.1.3",
"typescript": "^5.9.3"
},
"pnpm": {
"minimumReleaseAge": 4320
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
}
}