-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (55 loc) · 1.65 KB
/
package.json
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
{
"private": true,
"workspaces": ["examples/*", "packages/*"],
"scripts": {
"build": "turbo build",
"changeset:release": "turbo build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"cjs:release": "node -r esbuild-register ./scripts/cjs.ts",
"test": "vitest",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "pnpm lint --apply",
"preinstall": "npx only-allow pnpm",
"preconstruct": "node --import tsx scripts/preconstruct.ts",
"prepare": "npx simple-git-hooks",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@biomejs/biome": "^1.3.3",
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "2.25.2",
"@manypkg/get-packages": "^1.1.3",
"@microsoft/api-extractor": "^7.39.1",
"@tanstack/query-core": "^4",
"@tanstack/react-query": "4.36.1",
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.2",
"@types/node": "^20.0.0",
"@types/prettier": "^2.7.2",
"@types/react": "^18.2.0",
"dedent": "^0.7.0",
"esbuild": "0.15.13",
"esbuild-register": "^3.4.2",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"jsdom": "^20.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"simple-git-hooks": "^2.8.1",
"tsup": "^8.0.0",
"turbo": "1.10.9",
"tsx": "^4.7.1",
"typescript": "^5.0.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm format && pnpm lint:fix && git add -u"
},
"packageManager": "pnpm@8.3.1",
"dependencies": {
"happy-dom": "^13.3.8",
"vitest": "^1.2.2"
}
}