-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.87 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.87 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
61
62
63
64
65
66
{
"name": "utils",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/yopem/utils.git"
},
"author": "Karyana Yandi <karyana@yandi.me>",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
],
"catalogs": {
"config": {
"@yopem/eslint-config": "^0.2.0",
"@yopem/prettier-config": "^0.1.1",
"@yopem/typescript-config": "^0.2.0",
"eslint": "^9.21.0",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
}
}
},
"scripts": {
"build": "turbo run build",
"build:all": "turbo run build",
"build:fast": "turbo run build:fast",
"clean": "git clean -xdf dist .cache .turbo .next *.log",
"clean:all": "bun run clean && bun run clean:deps",
"clean:deps": "git clean -xdf node_modules",
"dev": "turbo dev",
"format:check": "turbo format:check",
"format:write": "turbo format:write",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"postinstall": "lefthook install",
"prebuild": "bun install",
"predev": "bun run build",
"release": "changeset publish",
"release:dev": "changeset publish --tag dev",
"typecheck": "turbo typecheck",
"version": "changeset version",
"version:dev": "changeset version --snapshot dev"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.5",
"@changesets/get-release-plan": "4.0.13",
"@changesets/types": "6.1.0",
"@yopem/eslint-config": "catalog:config",
"@yopem/prettier-config": "catalog:config",
"lefthook": "2.0.11",
"prettier": "catalog:config",
"turbo": "2.6.3",
"typescript": "catalog:config"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.2.18",
"prettier": "@yopem/prettier-config/base"
}