-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
package.json
File metadata and controls
56 lines (56 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
{
"name": "@spur.us/javascript",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo run build",
"build:declarations": "turbo run build:declarations",
"changeset": "changeset",
"clean": "turbo run clean",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "changeset publish && git push --follow-tags",
"release:canary": "changeset publish --tag canary",
"test": "turbo run test",
"version-packages": "changeset version && pnpm install --lockfile-only --engine-strict=false",
"version-packages:canary": "./scripts/canary.mjs",
"yalc:all": "for d in packages/*/; do echo $d; cd $d; pnpm yalc push --replace --sig; cd '../../'; done"
},
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@eslint/js": "^9.25.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.14.1",
"@types/react": "catalog:react",
"@types/react-dom": "catalog:react",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^26.1.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsup": "catalog:repo",
"turbo": "^2.5.0",
"typescript": "catalog:repo",
"typescript-eslint": "^8.31.0",
"vitest": "^3.1.2",
"yalc": "1.0.0-pre.53",
"yaml": "^2.7.1",
"zx": "catalog:repo"
},
"packageManager": "pnpm@10.8.0",
"engines": {
"node": ">=18"
},
"pnpm": {
"patchedDependencies": {
"yalc@1.0.0-pre.53": "patches/yalc@1.0.0-pre.53.patch"
}
}
}