forked from jgkaplan/gemini-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 764 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 764 Bytes
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
{
"name": "gemini-server",
"version": "2.1.1",
"description": "",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "npm run build && node dist/examples/example.js",
"clean": "rm -r dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgkaplan/gemini-server.git"
},
"author": "Joshua Kaplan",
"license": "ISC",
"dependencies": {
"mime": "^2.4.6",
"path-to-regexp": "^6.2.0",
"truncate-utf8-bytes": "^1.0.2"
},
"devDependencies": {
"@types/mime": "^2.0.3",
"@types/node": "^17.0.19",
"@types/truncate-utf8-bytes": "^1.0.0",
"typescript": "^4.5.4"
}
}