This repository was archived by the owner on Dec 10, 2025. It is now read-only.
-
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.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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": "sylphlab-typescript",
"version": "1.0.0",
"private": true,
"description": "Strict, AI-optimized TypeScript monorepo using Biome for linting/formatting, tsconfig presets, and guidelines.",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"format": "pnpm -r format",
"check": "pnpm -r check",
"lint": "pnpm run check",
"validate": "pnpm run check && turbo run validate",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm run build && pnpm install --frozen-lockfile && changeset publish",
"docs:dev": "pnpm --filter @sylphlab/typescript-docs dev",
"docs:build": "pnpm --filter @sylphlab/typescript-docs build"
},
"repository": {
"type": "git",
"url": "https://github.com/sylphlab/typescript.git"
},
"author": "SylphLab <hi@sylphlab.com> (https://sylphlab.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sylphlab/typescript/issues"
},
"homepage": "https://github.com/sylphlab/typescript#readme",
"keywords": [
"typescript",
"biome",
"biome-config",
"config",
"formatter",
"linter",
"strict",
"ai",
"sylphlab",
"monorepo"
],
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@sylphlab/eslint-config-sylph": "workspace:*",
"@sylphlab/eslint-config-sylph-react": "workspace:*",
"@sylphlab/eslint-config-sylph-rn": "workspace:*",
"@sylphlab/eslint-config-sylph-vue": "workspace:*",
"@sylphlab/typescript-config": "workspace:*"
},
"devDependencies": {
"@changesets/cli": "^2.29.2",
"lefthook": "^1.7.11",
"tsup": "^8.2.3",
"turbo": "latest"
},
"packageManager": "pnpm@10.8.0"
}