-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.23 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@olegpolyakov/ui-components",
"version": "0.4.0",
"description": "A set of accessible, customizable, and easy-to-use React components.",
"type": "module",
"main": "./dist/index.js",
"sass": "./dist/styles/_index.scss",
"styles": "./dist/index.css",
"types": "./dist/types/index.d.ts",
"files": [
"./dist/**/*"
],
"exports": {
".": {
"import": "./dist/index.js",
"sass": "./dist/styles/_index.scss",
"styles": "./dist/index.css",
"types": "./dist/types/index.d.ts"
},
"./styles": {
"import": "./dist/index.css",
"sass": "./dist/styles/_index.scss"
},
"./styles/*": {
"import": "./dist/styles/*",
"sass": "./dist/styles/*"
}
},
"author": {
"name": "Oleg Poliakov",
"email": "olegpoliakov@outlook.com"
},
"scripts": {
"build": "vite build && tsc",
"build-docs": "vite build --config docs/vite.config.js",
"build-sass": "sass src/index.scss dist/index.css",
"dev": "vite",
"docs": "vite --config docs/vite.config.js",
"lint": "eslint ./src",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"@dnd-kit/helpers": "^0.5.0",
"@dnd-kit/react": "^0.5.0",
"@floating-ui/core": "^1.7.3",
"@floating-ui/react": "^0.27.16",
"classnames": "^2.5.1",
"react-transition-group": "^4.4.5",
"vite-plugin-static-copy": "^3.1.4"
},
"peerDependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@mdx-js/mdx": "^3.1.1",
"@mdx-js/rollup": "^3.1.1",
"@types/node": "^20.19.23",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitejs/plugin-react": "^5.0.2",
"eslint": "^9.38.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"highlight.js": "^11.11.1",
"marked": "^16.3.0",
"marked-highlight": "^2.2.2",
"react-docgen-typescript": "^2.4.0",
"react-router-dom": "^5.3.4",
"sass": "^1.92.0",
"typescript": "^5.9.2",
"vite": "^7.1.4",
"vite-plugin-svgr": "^4.5.0"
}
}