-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "kevlar-tabs",
"version": "1.5.2",
"description": "Yet another better tabs library for React",
"type": "module",
"scripts": {
"dev": "ladle serve -h 127.0.0.1 --viteConfig vite.ladle.config.ts",
"build:clean": "pnpm dlx rimraf dist && && pnpm run build",
"build:dts": "tsc -p tsconfig.build.json --emitDeclarationOnly",
"build:js": "tsc -p tsconfig.build.json && vite build",
"build": "pnpm run build:js && pnpm run build:dts",
"lint": "eslint .",
"test": "vitest",
"prepare": "husky"
},
"keywords": [
"react",
"component",
"tabs",
"kevlar",
"frontend",
"typescript"
],
"license": "MIT",
"repository": "neolitec/kevlar-tabs",
"main": "./dist/kevlar-tabs.es.js",
"module": "./dist/kevlar-tabs.es.js",
"types": "./dist/index.d.ts",
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.9.0",
"@ladle/react": "^4.1.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.7.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/rollup-plugin-peer-deps-external": "^2.2.5",
"@typescript-eslint/parser": "^8.8.0",
"@vitejs/plugin-react": "^4.3.1",
"classnames": "^2.5.1",
"eslint": "^9.9.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"happy-dom": "^15.7.4",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"sass": "^1.79.4",
"styled-components": "^6.1.13",
"testing-library-selector": "^0.3.1",
"typescript": "~5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
"vitest": "^2.1.2",
"vitest-dom": "^0.1.1"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"dependencies": {
"classnames": "^2.0.0"
}
}