-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 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
{
"name": "sickui",
"version": "0.0.3",
"description": "A modern, high-performance React component library",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean",
"type-check": "turbo run type-check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:mdx": "prettier --write \"apps/docs/src/content/**/*.mdx\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=@sickui/core && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@prettier/plugin-xml": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"turbo": "^1.13.0",
"typescript": "^5.3.0"
},
"packageManager": "pnpm@8.15.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}