-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"name": "@gregoiref/utils",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@9.0.5",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"type": "module",
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"check": "turbo run check",
"commit": "czg",
"changeset": "changeset",
"version": "changeset version",
"fuzz": "pnpm turbo run build && npx jazzer",
"release": "turbo run build && changeset publish",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
],
"*.{json,css,html}": [
"biome format --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"devDependencies": {
"@jazzer.js/core": "^4.0.0",
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.27.12",
"@gregoiref/commitlint-config": "workspace:*",
"@gregoiref/cz-config": "workspace:*",
"@secretlint/secretlint-rule-preset-recommend": "^9.3.3",
"cz-git": "^1.11.0",
"@size-limit/preset-small-lib": "^11.2.0",
"esbuild": ">=0.25.0",
"size-limit": "^11.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"secretlint": "^9.3.3",
"turbo": "^2.9.14",
"typescript": "^5.7.3"
}
}