-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.57 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
{
"name": "@oneirosoft/quiddity",
"repository": {
"type": "git",
"url": "https://github.com/oneirosoft/quiddity"
},
"version": "0.1.0",
"description": "Local-first React state helpers with mutator-style updates.",
"license": "MIT",
"keywords": [
"react",
"state",
"state-management",
"local-state",
"reducer",
"useReducer",
"state-hook",
"hooks",
"store",
"derive"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup index.ts --format esm,cjs --dts",
"test": "bun test --preload ./test/setup.ts",
"test:react18": "bun add --no-save -d react@18 react-dom@18 @types/react@18 @types/react-dom@18 && bun test --preload ./test/setup.ts",
"test:react19": "bun add --no-save -d react@19 react-dom@19 @types/react@19 @types/react-dom@19 && bun test --preload ./test/setup.ts",
"test:all": "bun run test:react18; bun run test:react19"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.1",
"happy-dom": "^17.6.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"typescript": "^5.9.3"
},
"files": [
"dist",
"LICENSE",
"README.md"
]
}