-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 837 Bytes
/
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
{
"name": "@mukhindev/react-grid",
"version": "1.1.1",
"author": "Sergey Mukhin",
"description": "Grid for React with a headless UI and simple parameters",
"keywords": [
"react",
"ui",
"grid",
"columns",
"headless ui",
"typescript"
],
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"scripts": {
"build": "rimraf ./dist && npx tsc && node ./transfer.js",
"link": "npm link"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}