-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.62 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.62 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
{
"name": "desterlib",
"version": "0.2.0",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\" --ignore-path .gitignore",
"check-types": "turbo run check-types",
"commit": "TERM=dumb git-cz",
"commit:retry": "TERM=dumb git-cz --retry",
"prepare": "husky",
"changeset": "changeset",
"changeset:status": "changeset status",
"version": "changeset version && pnpm install --lockfile-only && pnpm changelog:sync",
"version:sync": "node scripts/sync-version.js",
"changelog:sync": "node scripts/sync-changelog.js",
"verify:versioning": "node scripts/verify-versioning.js",
"pre-pr": "node scripts/pre-pr-check.js",
"release": "pnpm build && changeset publish",
"pr:create": "bash scripts/create-pr.sh",
"pr:create:main": "bash scripts/create-pr.sh main"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.5.1",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"turbo": "^2.5.8",
"typescript": "5.9.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"lightningcss": "^1.30.2"
}
}
}