-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 KB
/
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
41
42
43
44
45
{
"name": "elymus",
"version": "1.0.0",
"description": "Platform for re-decentralizing dWeb.",
"main": "src/index.js",
"repository": "https://github.com/angrymouse/elymus",
"author": "Angrymous <nik@hns.is>",
"license": "MIT",
"bin": "./src/index.js",
"private": false,
"dependencies": {
"@fastify/static": "^6.5.0",
"bns-plus": "^0.15.2",
"cids": "^1.1.9",
"classic-level": "^1.2.0",
"fastify": "^4.6.0",
"hnsd.js": "^0.0.7",
"ipfs-core": "^0.16.1",
"mime": "^3.0.0",
"open": "^8.4.0",
"pino": "^8.6.0",
"undici": "^5.10.0",
"yauzl": "^2.10.0"
},
"devDependencies": {
"caxa": "^2.1.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"esbuild": "^0.15.9",
"pkg": "^5.8.0"
},
"scripts": {
"mkbin:windows": "caxa --input ./ --output dist/elymus.exe {{caxa}}/node_modules/.bin/node {{caxa}}/src/index.js --exclude ./dist/* ./docs/* ./.git/*",
"mkbin:macos": "caxa --input ./ --output dist/elymus.app {{caxa}}/node_modules/.bin/node {{caxa}}/src/index.js --exclude ./dist/* ./docs/* ./.git/*",
"mkbin:linux": "caxa --input ./ --output dist/elymus {{caxa}}/node_modules/.bin/node {{caxa}}/src/index.js --exclude ./dist/* ./docs/* ./.git/*"
},
"type": "module",
"pkg": {
"scripts": "/src/fetchMethods/*.js",
"targets": [
"node16"
],
"outputPath": "dist"
}
}