-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 KB
/
package.json
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
{
"name": "@korii/source",
"version": "1.0.0",
"description": "Korii",
"private": true,
"scripts": {
"start": "turbo run start",
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "biome check",
"coverage": "turbo run coverage",
"test": "turbo run test",
"format": "biome format --write",
"check": "turbo run build lint test",
"version": "changeset version && pnpm format",
"release": "pnpm check && changeset publish",
"commit": "git-cz"
},
"keywords": [],
"author": "Jhonathan M.",
"license": "MIT",
"engines": {
"node": ">=14.0.0 <=22.17.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"installConfig": {
"hoistingLimits": "none"
},
"dependencies": {
"dotenv-cli": "^7.4.4",
"turbo": "^2.3.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.12",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.10",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"lefthook": "^1.10.10",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]"
}