-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.08 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
{
"name": "@aimform/state",
"version": "0.2.1",
"architecture": {
"class": "system",
"elements": [
"Memory",
"Control"
],
"role": "semantic-owner",
"languages": [
"TypeScript"
],
"runtimes": [
"universal",
"node",
"web",
"react"
],
"providerOwner": "@aimform/state",
"bindingOwner": "@aimform/state",
"externalResourceBoundary": false
},
"description": "Aimform State — complete Zustand + Immer abstraction. Create stores, async actions, and hooks without importing zustand or immer directly.",
"type": "module",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./sdk/typescript/index.ts",
"import": "./sdk/typescript/index.ts"
},
"./core": {
"types": "./sdk/typescript/core/index.ts",
"import": "./sdk/typescript/core/index.ts"
},
"./runtime": {
"types": "./sdk/typescript/runtime/index.ts",
"import": "./sdk/typescript/runtime/index.ts"
},
"./bindings/react": {
"types": "./sdk/typescript/bindings/react/index.ts",
"import": "./sdk/typescript/bindings/react/index.ts"
}
},
"files": [
"aim",
"sdk",
"conformance",
"README.md",
"LICENSE"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage --coverage.provider=istanbul",
"conformance": "vitest run sdk/typescript/conformance.test.ts"
},
"dependencies": {
"immer": "^10.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"react": "^19.0.0"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/aimform/state.git"
},
"keywords": [
"aimform",
"zustand",
"state",
"immer",
"async",
"store"
],
"author": "Universal Reason LLC",
"homepage": "https://aimform.com"
}