-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 963 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 963 Bytes
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
{
"private": true,
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"lint": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" && eslint \"**/*.{js,ts,tsx}\" --quiet --fix",
"ci:lint": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\" && eslint \"**/*.{js,ts,tsx}\" --quiet",
"prepare": "husky",
"changeset": "changeset",
"ci:version": "changeset version",
"ci:tag": "changeset tag"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@changesets/cli": "^2.29.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.10.0",
"@types/bun": "1.3.6",
"@typescript-eslint/eslint-plugin": "8.4.0",
"@typescript-eslint/parser": "8.4.0",
"dotenv": "^17.3.1",
"eslint": "9.10.0",
"eslint-plugin-unicorn": "55.0.0",
"husky": "^9.1.1",
"prettier": "^3.3.3",
"typescript": "latest"
}
}