-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 4.7 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@spautz/limited-cache-workspace",
"private": true,
"description": "Root workspace for Limited-Cache",
"license": "MIT",
"homepage": "https://github.com/spautz/limited-cache#readme",
"bugs": "https://github.com/spautz/limited-cache/issues",
"repository": {
"type": "git",
"url": "https://github.com/spautz/limited-cache.git"
},
"author": {
"name": "Steven Pautz",
"url": "https://github.com/spautz/"
},
"engines": {
"node": "^18 || ^20 || ^22 || ^23",
"pnpm": "^9"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"____ HOOKS _________________________________________________________": "",
"preinstall": "npx only-allow pnpm",
"prepare": "husky && pnpm run packages:prepare",
"husky:precommit": "lint-staged",
"husky:prepush": "pnpm run format:verify && pnpm run typecheck && pnpm run lint",
"____ BATCH COMMANDS FOR PACKAGES ___________________________________": "",
"packages:prepare": "pnpm run clean && pnpm run packages:yalc-publish",
"packages:clean": "pnpm --parallel -r run clean",
"packages:build": "pnpm -r run build",
"packages:lint": "pnpm -r run lint",
"packages:lint:fix": "pnpm -r run lint:fix",
"packages:test": "pnpm -r run test:coverage",
"packages:test:coverage": "pnpm -r run test:coverage",
"packages:test:quick": "pnpm --parallel -r run test:quick",
"packages:typecheck": "pnpm -r run typecheck",
"packages:yalc-publish": "pnpm -r --filter \"./packages/*\" exec yalc publish --sig --push --replace",
"packages:all": "pnpm -r run all",
"packages:all:readonly": "pnpm -r run all:readonly",
"packages:all:quick": "pnpm --parallel -r run all:quick",
"packages:all:ci": "pnpm -r run all:ci",
"____ INTEGRATION ___________________________________________________": "",
"clean": "pnpm run test:clean && rimraf --glob ./node_modules/.cache ./*.log && pnpm run packages:clean",
"all": "pnpm run format && pnpm run typecheck && pnpm run lint:fix && pnpm run test:coverage && pnpm run packages:build",
"all:readonly": "pnpm run format:verify && pnpm run typecheck && pnpm run lint && pnpm run test:quick",
"all:quick": "pnpm run format && pnpm run typecheck && pnpm run lint:fix",
"all:ci": "pnpm run format:verify && pnpm run typecheck && pnpm run lint && pnpm run test:ci && pnpm run packages:build",
"all:all": "pnpm run all && pnpm run packages:all",
"____ INDIVIDUAL COMMANDS ___________________________________________": "",
"changelog": "changeset",
"changelog:status": "changeset status --verbose",
"changelog:status:ci": "changeset status --since=origin/main --verbose",
"format": "prettier --write .",
"format:verify": "prettier --list-different .",
"lint": "eslint . --max-warnings 0 --report-unused-disable-directives",
"lint:fix": "eslint . --max-warnings 0 --report-unused-disable-directives --fix",
"release:prep": "pnpm run changelog:status && changeset version",
"test": "pnpm run test:coverage",
"test:clean": "rimraf ./coverage",
"test:ci": "pnpm run test:clean && vitest run --coverage",
"test:coverage": "pnpm run test:clean && vitest run --coverage",
"test:quick": "pnpm run test:clean && vitest run --coverage=false",
"test:ui": "pnpm run test:clean && vitest --ui",
"test:watch": "pnpm run test:clean && vitest watch --coverage=false",
"test:watchcoverage": "pnpm run test:clean && vitest watch --coverage",
"typecheck": "tsc -p ./tsconfig.json --noEmit"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
"@changesets/cli": "2.27.9",
"@changesets/types": "6.0.0",
"@eslint/compat": "1.2.1",
"@size-limit/preset-small-lib": "11.1.6",
"@testing-library/jest-dom": "^6.6.2",
"@types/node": "22.7.9",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vitest/coverage-v8": "2.1.3",
"changesets-format-with-issue-links": "0.3.0",
"downlevel-dts": "0.11.0",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"husky": "9.1.6",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"publint": "0.2.12",
"rimraf": "5.0.10",
"size-limit": "11.1.6",
"tsup": "8.3.0",
"typescript": "5.6.3",
"typescript-eslint": "8.11.0",
"vitest": "2.1.3",
"yalc": "1.0.0-pre.53"
},
"lint-staged": {
"*.{css,html,js,jsx,json,less,md,scss,ts,tsx,yaml}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --max-warnings 0"
]
}
}