-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1015 Bytes
/
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
{
"name": "@mostly-it/nact-extensions",
"version": "3.2.0",
"description": "A library with reusable logic for the actor system library @nact/core.",
"type": "module",
"author": "MostlyIT",
"homepage": "https://github.com/MostlyIT/nact-extensions#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MostlyIT/nact-extensions.git"
},
"bugs": {
"url": "https://github.com/MostlyIT/nact-extensions/issues"
},
"license": "MIT-0",
"exports": {
".": "./source/index.ts",
"./bundled/@nact/core": "./source/vendored/@nact/core/index.ts",
"./utility": "./source/utility/index.ts",
"./utility/actors": "./source/utility/actors/index.ts"
},
"files": [
"/source",
"!/**/*.spec.ts",
"!__testing__"
],
"dependencies": {
"immutable": "^5.0.3"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"scripts": {
"test": "tsc && vitest --run"
},
"devDependencies": {
"typescript": "5.7.3",
"vitest": "3.0.5"
}
}