-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.36 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.36 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
{
"name": "voidcore-network",
"version": "14.0.0",
"description": "🌟 The Vessel of Silence - Pure message routing with heart-swappable transports",
"main": "src/voidcore.js",
"type": "module",
"keywords": [
"message-routing",
"autonomous-plugins",
"transport-adapter",
"vanilla-javascript",
"browser-native",
"no-dependencies"
],
"scripts": {
"start": "python3 -m http.server 8080",
"demo": "python3 -m http.server 8080",
"test": "echo 'Open http://localhost:8080 to run demos'",
"heart-transplant": "echo 'Demo: http://localhost:8080/challenge/voidcore-v13-transport-demo.html'",
"v12-demo": "echo 'Demo: http://localhost:8080/challenge/voidcore-v12-demo.html'"
},
"repository": {
"type": "git",
"url": "https://github.com/moe-charm/voidcore.js"
},
"author": "moe-charm",
"license": "MIT",
"files": [
"src/",
"docs/",
"examples/",
"challenge/",
"README.md",
"QUICKSTART.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {},
"devDependencies": {},
"browser": {
"./src/voidcore.js": "./src/voidcore.js"
},
"exports": {
".": {
"import": "./src/voidcore.js",
"browser": "./src/voidcore.js"
},
"./message": {
"import": "./src/message.js"
},
"./transport": {
"import": "./src/transport.js"
}
}
}