-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 4.36 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 4.36 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
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
{
"name": "@spautz/package-template--workspace",
"private": true,
"description": "My opinionated template for a npm library repo",
"license": "MIT",
"homepage": "https://github.com/spautz/package-template#readme",
"bugs": "https://github.com/spautz/package-template/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/spautz/package-template.git"
},
"author": {
"name": "Steven Pautz",
"url": "https://stevenpautz.com"
},
"engines": {
"node": "^20 || ^22 || ^24 || ^25",
"pnpm": ">=10.32.0 <11"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"type": "module",
"scripts": {
"____ HOOKS _________________________________________________________": "",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"husky:precommit": "lint-staged",
"husky:prepush": "pnpm run format:verify && turbo run w:lint lint w:typecheck typecheck",
"____ BATCH OPERATIONS & STANDARD TASKS _____________________________": "",
"all": "pnpm run format && turbo run w:lint w:typecheck pipeline-all",
"all:ci": "pnpm run format:verify && pnpm run catalogs:verify && turbo run w:all-tests:ci w:lint:verify w:typecheck pipeline-ci --ui=stream",
"all:all": "pnpm run all && pnpm run all:ci && turbo run w:all-tests",
"dependencies": "turbo run dependencies",
"dev": "turbo run dev",
"lint": "turbo run w:lint lint",
"lint:verify": "turbo run w:lint:verify lint:verify",
"test": "turbo run test",
"test:ci": "turbo run w:all-tests:ci --ui=stream",
"test:ui": "turbo run w:all-tests:ui",
"test:watch": "turbo run w:all-tests:watch",
"typecheck": "turbo run w:typecheck typecheck",
"____ WORKSPACE-ONLY TASKS __________________________________________": "",
"changelog": "changeset",
"changelog:status": "changeset status --verbose",
"changelog:status:ci": "changeset status --since=origin/main --verbose",
"catalogs:verify": "node --experimental-strip-types ./scripts/verify-catalog-specifiers.ts",
"clean": "pnpm run w:all-tests:clean && rimraf --glob ./node_modules/.cache ./.turbo/{cache,runs,*.log} ./*.log && pnpm --parallel -r run clean",
"docs": "pnpm run --filter=./docs-website dev",
"format": "biome format --write .",
"format:verify": "biome format .",
"publish:yalc": "pnpm run -r publish:yalc",
"release:docs": "pnpm run --filter=./docs-website deploy",
"release:prep": "pnpm run changelog:status && changeset version",
"// COMMENT": "Scripts prefixed with 'w:' are the workspace-only versions of the standard tasks",
"w:all-tests:clean": "rimraf ./coverage",
"w:all-tests": "pnpm run w:all-tests:clean && vitest run --coverage",
"w:all-tests:ci": "pnpm run w:all-tests:clean && vitest run --coverage --bail 1",
"w:all-tests:ui": "pnpm run w:all-tests:clean && vitest --ui",
"w:all-tests:watch": "pnpm run w:all-tests:clean && vitest watch --coverage",
"w:lint": "biome check --write",
"w:lint:verify": "biome check",
"w:typecheck": "tsc -p ./tsconfig.json --noEmit",
"____ PACKAGE-ONLY TASKS ____________________________________________": "",
"packages:all": "turbo run pipeline-all",
"packages:all:ci": "turbo run pipeline-ci --ui=stream",
"packages:build": "turbo run build",
"packages:lint": "turbo run lint",
"packages:lint:verify": "turbo run lint:verify",
"packages:test": "turbo run test",
"packages:test:ci": "turbo run test:ci --ui=stream",
"packages:test:ui": "turbo run test:ui",
"packages:test:watch": "turbo run test:watch",
"packages:typecheck": "turbo run typecheck"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@changesets/cli": "2.30.0",
"changesets-format-with-issue-links": "0.3.0",
"glob": "13.0.6",
"husky": "9.1.7",
"jsdom": "29.0.1",
"lint-staged": "16.4.0",
"lodash": "4.17.23",
"only-allow": "1.2.2",
"rimraf": "6.1.3",
"skip-the-build": "1.1.1",
"tiny-immutable-set": "1.3.1",
"tsdown": "catalog:packages",
"turbo": "2.8.21",
"typescript": "catalog:packages",
"vite": "8.0.3",
"vitest": "catalog:shared",
"yalc": "1.0.0-pre.53",
"yargs": "18.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [
"biome check --write"
]
}
}