-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 1.83 KB
/
package.json
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
{
"name": "rmemo",
"version": "0.51.32",
"description": "ctx-core rmemo",
"keywords": [
"ctx-core",
"rmemo",
"reactive",
"state management",
"reactive state management",
"memo",
"reactive memo",
"signal",
"reactive signal"
],
"homepage": "https://github.com/ctx-core/rmemo#readme",
"bugs": {
"url": "https://github.com/ctx-core/rmemo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ctx-core/rmemo.git"
},
"license": "Apache-2.0",
"author": {
"name": "Brian Takita",
"url": "https://briantakita.me",
"email": "[email protected]"
},
"type": "module",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": ":",
"clean": ":",
"exec": "$@",
"prepublishOnly": "pnpm clean && pnpm build",
"test": "pnpm run /^test:/",
"test:size": "size-limit",
"test:type": "check-dts",
"test:unit": "tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
"disable:test:coverage": "c8 pnpm test:unit"
},
"dependencies": {
"ctx-core": "^7.2.32"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.4",
"c8": "^10.1.2",
"check-dts": "^0.8.2",
"size-limit": "^11.1.4",
"tsx": "^4.19.0",
"typescript": "next",
"uvu": "^0.5.6"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"size-limit": [
{
"name": "memo_",
"import": {
"": "{ memo_ }"
},
"limit": "358 B"
},
{
"name": "memo_ sig_",
"import": {
"": "{ sig_, memo_ }"
},
"limit": "381 B"
},
{
"name": "memo_ sig_ be_ ctx_",
"import": {
"": "{ sig_, memo_, be_, ctx_ }"
},
"limit": "476 B"
},
{
"name": "memo_ sig_ be_ ctx_ be_memo_pair_ be_sig_triple_",
"import": {
"": "{ sig_, memo_, be_, ctx_, be_memo_pair_, be_sig_triple_ }"
},
"limit": "559 B"
}
]
}