-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 732 Bytes
/
package.json
File metadata and controls
34 lines (33 loc) · 732 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
34
{
"name": "static-short",
"description": "A static URL shortener - no backend required, just static hosting.",
"version": "2.3.1",
"author": "soymadip",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/soymadip/StaticShort"
},
"private": true,
"scripts": {
"start": "pnpm i && node index.js start",
"build": "node index.js build",
"clean": "node index.js clean",
"help": "node index.js help"
},
"keywords": [
"url-shortener",
"static",
"redirects",
"html"
],
"main": "index.js",
"dependencies": {
"consola": "^3.4.2",
"jsonc-parser": "^3.3.1",
"live-server": "^1.2.2"
},
"engines": {
"node": ">=14.0"
}
}