-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.81 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
{
"name": "preline-react",
"version": "0.1.0",
"description": "React implementation of Preline UI (preline.io)",
"main": "lib/index.js",
"types": "src/index.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "tsc --noEmit && eslint './{src,scripts}/**/*.{js,ts,tsx}' --fix",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,tsx,ts}": "eslint --fix"
},
"keywords": [
"preline",
"tailwindcss",
"react"
],
"author": "Yuhang Ge <abeyuhang@gmail.com>",
"peerDependencies": {
"cva": "npm:class-variance-authority >= 0.7",
"lodash-es": "*",
"react": ">= 18",
"react-dom": ">= 18",
"react-icons": "*"
},
"dependencies": {
"@floating-ui/react": "^0.26.2",
"@tanstack/react-table": "^8.10.7"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.9.4",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"cva": "npm:class-variance-authority@^0.7.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"react-icons": "^4.12.0",
"typescript": "^5.3.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/binfoe/preline-react.git"
},
"bugs": {
"url": "https://github.com/binfoe/preline-react/issues"
},
"homepage": "https://github.com/binfoe/preline-react#readme"
}