-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "simpleshare",
"version": "1.1.0",
"description": "Support 'share' links for static sites without invasive tracking",
"license-actual-since-npm-does-not-follow-the-actual-spdx-spec": "AGPL-3.0-or-later",
"license": "AGPL-3.0",
"main": "dist/server.js",
"scripts": {
"build": "node_modules/.bin/tsc",
"start": "node dist/server.js"
},
"dependencies": {
"@ladjs/koa-views": "^9.0.0",
"axios": "^1.6.2",
"handlebars": "^4.7.8",
"koa": "^2.14.2",
"koa-pino-logger": "^4.0.0",
"koa-router": "^12.0.1",
"koa-static": "^5.0.0"
},
"engines": {
"node": ">=20"
},
"repository": {
"url": "https://www.github.com/fileformat/simpleshare"
},
"keywords": [
"share",
"sharing",
"social",
"redirect",
"bookmark"
],
"devDependencies": {
"@types/koa": "^2.0.46",
"@types/koa-router": "^7.0.32",
"@types/koa-static": "^4.0.0",
"@types/node": "^20.10.0",
"nodemon": "^3.0.1",
"pino-pretty": "^10.2.3",
"typescript": "^5.3.2"
}
}