-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "anticore-server",
"version": "3.0.0",
"description": "A low learning curve anticore server",
"type": "module",
"exports": {
".": "./server.js",
"./app.js": "./app.js",
"./renderer.js": "./renderer.js",
"./responder.js": "./responder.js",
"./server.js": "./server.js"
},
"scripts": {
"lint": "eslint --report-unused-disable-directives ."
},
"author": "Lcf.vs",
"dependencies": {
"@lcf.vs/dom-engine": "^5.4.1",
"fastify": "^3.20.2",
"fastify-compress": "^3.6.0",
"fastify-multipart": "^4.0.7",
"fastify-static": "^4.2.3",
"open": "^8.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lcfvs/anticore-server.git"
},
"keywords": [
"JavaScript",
"Node.js",
"anticore",
"server"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Lcfvs/anticore-server/issues"
},
"homepage": "https://github.com/Lcfvs/anticore-server#readme",
"devDependencies": {
"esbuild": "^0.12.21",
"eslint": "^7.28.0"
}
}