-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.54 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
{
"name": "emergent",
"version": "1.1.0",
"type": "module",
"description": "Complex behavior from simple rules. A minimal, type-safe library for event-driven systems where sophisticated patterns emerge naturally from simple handlers.",
"main": "./dist/index.cjs",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "zshy",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RegiByte/emergent.git"
},
"bugs": {
"url": "https://github.com/RegiByte/emergent/issues"
},
"keywords": [
"emergent",
"emergence",
"event-driven",
"effects",
"handlers",
"causality",
"event-loop",
"functional",
"pure-functions",
"side-effects",
"re-frame",
"elm-architecture",
"testing",
"data-driven",
"declarative",
"observable",
"typescript"
],
"homepage": "https://github.com/RegiByte/emergent#readme",
"author": "RegiByte",
"license": "ISC",
"devDependencies": {
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.14",
"jsdom": "^27.3.0",
"typescript": "^5.9.3",
"vitest": "^4.0.14",
"zshy": "^0.6.0"
},
"zshy": {
"exports": {
".": "src/index.ts"
}
},
"files": [
"dist"
],
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"types": "./dist/index.d.cts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
}
}