-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.91 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.91 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
{
"name": "@rlabs-inc/signals",
"version": "1.13.1",
"description": "Production-grade fine-grained reactivity for TypeScript. A complete standalone mirror of Svelte 5's reactivity system - signals, effects, derived values, deep reactivity, reactive collections, reactive bindings, and reactive slots.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "bun build src/index.ts --outfile dist/index.mjs --target node --format esm && bun build src/index.ts --outfile dist/index.js --target node --format cjs && bun run build:types",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
"test": "bun test",
"test:unit": "bun test test/unit",
"test:integration": "bun test test/integration",
"test:perf": "bun test test/performance",
"prepublishOnly": "bun run build"
},
"keywords": [
"signals",
"reactivity",
"reactive",
"fine-grained",
"proxy",
"state",
"effect",
"derived",
"computed",
"observable",
"bind",
"binding",
"two-way-binding",
"linkedSignal",
"createSelector",
"effectScope",
"slot",
"slotArray",
"trackedSlotArray",
"typedSlotArray",
"typedSlotArrayGroup",
"TypedArray",
"FFI",
"zero-copy",
"dirty-tracking",
"incremental",
"ecs",
"svelte",
"angular",
"solid",
"vue",
"typescript"
],
"author": "RLabs Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rlabs-inc/signals"
},
"devDependencies": {
"@preact/signals-core": "^1.12.1",
"@types/bun": "latest",
"mitata": "^1.0.34",
"typescript": "^5"
},
"dependencies": {}
}