-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.55 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
{
"name": "@gbdrummer/signalib",
"version": "0.0.1",
"description": "Predictable JavaScript signals with explicit dependencies, fine-grained reactive collections, and first-class mutation patches.",
"license": "MIT",
"author": "Graham Butler",
"repository": {
"type": "git",
"url": "git+https://github.com/gbdrummer/signalib.git"
},
"homepage": "https://github.com/gbdrummer/signalib#readme",
"bugs": {
"url": "https://github.com/gbdrummer/signalib/issues"
},
"keywords": [
"signals",
"reactivity",
"reactive-state",
"state-management",
"observable",
"patches",
"undo",
"redo",
"history",
"javascript"
],
"type": "module",
"main": "./src/index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/index.js",
"default": "./src/index.js"
},
"./history": {
"types": "./src/history/index.d.ts",
"import": "./src/history/index.js",
"default": "./src/history/index.js"
}
},
"files": [
"index.d.ts",
"src/index.js",
"src/createHistory.js",
"src/core",
"src/collections",
"src/history/index.js",
"src/history/index.d.ts",
"src/history/README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"smoke": "node ./test/smoke-tests.node.js",
"stress": "SIGNALIB_STRESS=1 node ./test/smoke-tests.node.js",
"test": "node ./test/smoke-tests.node.js",
"test:types": "tsc -p ./test/tsconfig.json"
},
"devDependencies": {
"typescript": "^7.0.2"
}
}