1
0
mirror of https://github.com/c9fe/22120.git synced 2024-07-07 11:52:51 +02:00

3.0.xx new version with fixes

This commit is contained in:
Cris Stringfellow 2023-07-23 10:13:28 +08:00
parent 0d94d86944
commit df601c543d
No known key found for this signature in database
2 changed files with 19 additions and 2 deletions

View File

@ -1,12 +1,12 @@
{
"name": "diskernet",
"version": "3.0.0",
"version": "3.0.1",
"type": "module",
"description": "Library server and an archivist browser controller.",
"main": "src/app.js",
"module": "dist/diskernet.mjs",
"bin": {
"diskernet": "build/diskernet.cjs"
"diskernet": "./run.cjs"
},
"scripts": {
"start": "node src/app.js",

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.network.server</key>
<true/>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<key>com.apple.security.cs.disable-executable-page-protection</key>
<true/>
</dict>
</plist>