-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.72 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
{
"name": "@fictjs/ui-primitives-workspace",
"private": true,
"version": "0.0.0",
"description": "Modern pnpm + turbo TypeScript monorepo for @fictjs/ui-primitives.",
"license": "MIT",
"packageManager": "pnpm@10.31.0",
"engines": {
"node": ">=22.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fictjs/ui-primitives.git"
},
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"clean": "turbo run clean --continue",
"commit": "cz",
"dev": "turbo run dev --parallel",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix --continue",
"prepare": "husky",
"release": "changeset publish",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:watch": "turbo run test:watch --parallel",
"typecheck": "turbo run typecheck",
"verify": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"version-packages": "changeset version"
},
"config": {
"commitizen": {
"path": "cz-git"
}
},
"devDependencies": {
"@changesets/cli": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@eslint/js": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"commitizen": "catalog:",
"cz-git": "catalog:",
"eslint": "catalog:",
"globals": "catalog:",
"husky": "catalog:",
"lint-staged": "catalog:",
"prettier": "catalog:",
"rimraf": "catalog:",
"tsup": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vitest": "catalog:"
}
}