-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.5 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
{
"name": "@embeddr/zen-shell",
"version": "0.2.0-alpha.3",
"description": "Zen Shell — panel-based workspace framework for Embeddr",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./styles/base.css": "./src/styles/base.css"
},
"files": [
"dist",
"src/styles",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"@embeddr/client-typescript": "^0.2.0-alpha.3",
"@embeddr/react-ui": "^0.2.0-alpha.2",
"@tanstack/react-query": "^5.66.5",
"lucide-react": "^0.544.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@tanstack/eslint-config": "^0.3.4",
"@types/node": "^22.19.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"prettier": "^3.6.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "^5.7.3"
},
"keywords": [
"embeddr",
"zen",
"shell",
"panels",
"workspace"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/embeddr-net/zen-shell.git"
}
}