-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.23 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.23 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
{
"name": "metatron-vm",
"description": "a ring-oriented language and virtual machine",
"bin": "jdeploy-bundle/jdeploy.js",
"dependencies": {
"njre": "^1.5.4",
"shelljs": "^0.8.5"
},
"jdeploy": {
"jar": "target/metatron-0.1-SNAPSHOT-jar-with-dependencies.jar",
"mainClass": "studio.phaseshift.metatron.BootLoader",
"jvmVersion": "21",
"title": "metatron-vm",
"description": "a ring-oriented language and virtual machine",
"vendor": "PhaseShift Studio, LLC",
"url": "http://metatron.phaseshift.studio",
"javaArgs": [
"--enable-native-access=ALL-UNNAMED",
"--add-modules",
"jdk.incubator.vector",
"--add-opens",
"java.base/java.lang=ALL-UNNAMED",
"--add-opens",
"java.base/java.lang.invoke=ALL-UNNAMED",
"--add-opens",
"java.base/java.lang.reflect=ALL-UNNAMED",
"--add-opens",
"java.base/java.util=ALL-UNNAMED",
"--add-opens",
"java.base/java.util.concurrent.atomic=ALL-UNNAMED",
"--add-opens",
"java.base/java.io=ALL-UNNAMED",
"--add-opens",
"java.base/java.nio=ALL-UNNAMED",
"--add-opens",
"java.base/java.net=ALL-UNNAMED",
"--add-opens",
"java.base/sun.nio.cs=ALL-UNNAMED"
]
}
}