-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.37 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.37 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
80
81
82
{
"name": "stan-js-devtools",
"private": false,
"version": "1.0.0",
"description": "Devtools for stan-js",
"keywords": [
"state",
"react",
"store",
"context",
"rerenders",
"typescript",
"intellisense"
],
"homepage": "https://codemask-labs.github.io/stan-js/guides/devtools/",
"repository": {
"type": "git",
"url": "git+https://github.com/codemask-labs/stan-js-devtools.git"
},
"type": "module",
"exports": {
".": {
"react-native": "./build/rn/index.cjs",
"import": "./build/index.js",
"default": "./build/index.cjs"
},
"./index.css": "./build/index.css"
},
"main": "./build/index.cjs",
"types": "./build/index.d.ts",
"react-native": "./build/expo/index.cjs",
"source": "src/index",
"files": ["build", "dist", "expo-module.config.json"],
"scripts": {
"build": "tsup",
"build:web": "cd ./expo-web && bun run build",
"build:all": "bun run build && bun run build:web",
"lint": "eslint src && dprint check",
"lint:fix": "eslint src --fix && dprint fmt"
},
"dependencies": {
"@radix-ui/react-label": "2.1.0",
"@radix-ui/react-popover": "1.1.1",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-tooltip": "1.1.2",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"date-fns": "3.6.0",
"lucide-react": "0.428.0",
"object-path-immutable": "4.1.2",
"react-arborist": "3.4.0",
"react-day-picker": "8.10.1",
"react-resizable-panels": "2.1.0",
"tailwind-merge": "2.5.2",
"tailwindcss-animate": "1.0.7"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"expo": ">=51",
"stan-js": ">=1.5.0"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"devDependencies": {
"@types/node": "22.4.2",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.20",
"dprint": "0.47.2",
"eslint": "9.9.0",
"eslint-config-codemask": "2.0.0-beta.13",
"postcss": "8.4.41",
"tailwindcss": "3.4.10",
"tsup": "8.2.4",
"typescript": "5.5.4",
"expo": "53.0.20"
}
}