-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.75 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.75 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
{
"name": "open-harness",
"private": true,
"type": "module",
"packageManager": "bun@1.3.8",
"workspaces": [
"packages/*",
"examples/*",
"apps/*"
],
"scripts": {
"clean": "node scripts/clean.mjs",
"prebuild": "node scripts/clean-stray.mjs",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "eslint \"**/{src,test,examples,scripts,dtslint}/**/*.{ts,mjs}\"",
"lint-fix": "eslint \"**/{src,test,examples,scripts,dtslint}/**/*.{ts,mjs}\" --fix",
"test": "turbo run test",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"changeset-version": "changeset version",
"changeset-publish": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@effect/eslint-plugin": "^0.3.2",
"@effect/language-service": "latest",
"@effect/vitest": "latest",
"@eslint/compat": "1.2.2",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.13.0",
"@types/node": "^22.8.5",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"effect": "^3.10.7",
"eslint": "^9.13.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-codegen": "^0.29.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-storybook": "^10.2.0",
"glob": "^11.0.0",
"tsdown": "^0.20.1",
"tsx": "^4.19.2",
"turbo": "^2.8.1-canary.1",
"typescript": "^5.6.3",
"vitest": "^3.2.0",
"zod": "^3.23.0"
},
"resolutions": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0"
}
}