-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"name": "tinywidgets",
"version": "1.5.0",
"author": "jamesgpearce",
"repository": "github:tinyplex/tinywidgets",
"license": "MIT",
"homepage": "https://tinywidgets.org",
"description": "A collection of tiny, reusable, UI components - wrapped in a helpful app layout with header, side bar, dark mode, and more.",
"keywords": [
"tiny",
"local-first",
"ui",
"components",
"styling",
"react"
],
"type": "module",
"scripts": {
"prePublishPackage": "prettier --check . && eslint . && cspell --quiet . && tsc && cp ../README.md ./README.md"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"cspell": "^10.0.0",
"eslint": "^9.30.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
},
"exports": {
".": "./src/index.ts",
"./css": "./src/index.css.ts"
},
"dependencies": {
"@vanilla-extract/css": "^1.20.1",
"lucide-react": "^1.8.0",
"tinybase": "^8.2.0"
},
"peerDependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
}