-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
{
"name": "@roseui/monorepo",
"private": true,
"type": "module",
"author": "Norush",
"license": "MIT",
"engines": {
"node": "^18.12.0 || ^20.17.0"
},
"homepage": "https://github.com/RoseAplmus/rose-ui.git",
"repository": {
"type": "git",
"url": "git+https://github.com/RoseAplmus/rose-ui.git"
},
"keywords": [
"ui",
"components",
"react-components"
],
"scripts": {
"prepare": "husky",
"dev": "vite",
"dev:website": "pnpm --filter=website dev",
"build:website": "pnpm --filter=website build",
"lint": "pnpm run lint:es && pnpm run lint:pt",
"lint:es": "eslint --fix",
"lint:pt": "prettier --write",
"clean:nm": "rimraf node_modules"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.5",
"zod": "^3.24.1"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"packageManager": "[email protected]"
}