-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.64 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.64 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
{
"name": "atproto-ui",
"version": "0.11.1",
"type": "module",
"description": "React components and hooks for rendering AT Protocol records.",
"main": "./lib-dist/index.js",
"module": "./lib-dist/index.js",
"types": "./lib-dist/index.d.ts",
"exports": {
".": {
"import": "./lib-dist/index.js",
"require": "./lib-dist/index.js"
},
"./styles.css": "./lib-dist/styles.css"
},
"files": [
"lib-dist",
"README.md"
],
"sideEffects": [
"./lib-dist/styles.css"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc -b",
"build:demo": "BUILD_TARGET=demo vite build",
"build:all": "npm run build && npm run build:demo",
"lint": "eslint .",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
},
"dependencies": {
"@atcute/atproto": "^3.1.7",
"@atcute/bluesky": "^3.2.3",
"@atcute/client": "^4.0.3",
"@atcute/identity-resolver": "^1.1.3",
"@atcute/tangled": "^1.0.10"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@microsoft/api-extractor": "^7.53.1",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"unplugin-dts": "^1.0.0-beta.6",
"vite": "npm:rolldown-vite@7.1.14"
}
}