-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
91 lines (91 loc) · 1.97 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"version": "6.0.0",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.es.js",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": [
"./dist/index.es.js",
"./dist/index.d.ts"
],
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=10"
},
"scripts": {
"start": "vite watch",
"build": "vite build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {
"@chakra-ui/react": "^3.2.2",
"@emotion/react": "^11.13.5",
"react": "^18.2.0"
},
"dependencies": {
"next-themes": "^0.4.3",
"react-icons": "^5.3.0",
"react-nanny": "2.15.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"name": "@choc-ui/chakra-autocomplete",
"author": "anubra266",
"repository": {
"type": "git",
"url": "git+https://github.com/anubra266/choc-autocomplete.git"
},
"size-limit": [
{
"path": "./dist/index.es.js",
"limit": "10 KB"
},
{
"path": "./dist/index.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.23.9",
"@chakra-ui/react": "^3.2.2",
"@emotion/react": "^11.13.5",
"@size-limit/esbuild": "11.1.5",
"@size-limit/esbuild-why": "11.1.5",
"@size-limit/file": "11.1.5",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"babel-loader": "^9.1.3",
"husky": "^9.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"size-limit": "11.1.5",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^4.2.2",
"vite-plugin-linter": "^3.0.0",
"vite-tsconfig-paths": "^5.0.1"
}
}