-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.55 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
{
"name": "@wren/ui",
"version": "0.1.0",
"type": "module",
"description": "React components with container queries and fluid scales. No breakpoints.",
"main": "./dist/wren.umd.js",
"module": "./dist/wren.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/wren.es.js",
"require": "./dist/wren.umd.js"
},
"./styles": "./dist/style.css"
},
"repository": {
"type": "git",
"url": "https://github.com/PxPerfectMike/Wren.git"
},
"homepage": "https://wrenui.com",
"bugs": {
"url": "https://github.com/PxPerfectMike/Wren/issues"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:lib": "tsc && vite build --mode lib",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"typescript": "^5.6.3",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0"
},
"keywords": [
"react",
"responsive",
"layout",
"design-system",
"container-queries",
"fluid-design"
],
"author": "",
"license": "MIT"
}