-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.56 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.56 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "kho",
"version": "2.0.3",
"description": "Data-driven state management library with reactive effects",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./react": {
"import": "./dist/react/index.js",
"require": "./dist/react/index.cjs",
"types": "./dist/react/index.d.ts"
},
"./vue": {
"import": "./dist/vue/index.js",
"require": "./dist/vue/index.cjs",
"types": "./dist/vue/index.d.ts"
},
"./systems": {
"import": "./dist/systems/index.js",
"require": "./dist/systems/index.cjs",
"types": "./dist/systems/index.d.ts"
}
},
"scripts": {
"build": "tsx scripts/build.ts",
"deploy": "tsx scripts/deploy.ts"
},
"keywords": [
"state",
"state-management",
"reactive",
"effects",
"atoms",
"data-driven"
],
"author": "giangm9",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"peerDependencies": {
"react": "^19.0.0",
"vue": "^3.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
}
},
"devDependencies": {
"@fontsource/jetbrains-mono": "^5.2.8",
"@monaco-editor/react": "^4.7.0",
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vanilla-extract/css": "^1.18.0",
"@vanilla-extract/vite-plugin": "^5.1.4",
"@vitejs/plugin-react": "^4.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"esbuild": "^0.19.0",
"geist": "^1.5.1",
"lucide-react": "^0.562.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-resizable-panels": "^4.4.1",
"tailwind-merge": "^3.4.0",
"tsx": "^4.0.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vue": "^3.4.0"
},
"engines": {
"node": ">=16"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/giangm9/kho.git"
},
"bugs": {
"url": "https://github.com/giangm9/kho/issues"
},
"homepage": "https://khojs.dev"
}