-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 908 Bytes
/
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
{
"name": "simple-short-url",
"version": "1.0.0",
"description": "Short URL generator which uses Cloudflare Workers as backend.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "vite --mode development",
"build": "vite build --mode production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yuameshi/simple-short-url.git"
},
"keywords": [
"short-url",
"cloudfare",
"cloudflare workers",
"cloudflare pages"
],
"author": "Yuameshi <[email protected]> (https://www.yuameshi.top/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Yuameshi/simple-short-url/issues"
},
"homepage": "https://short-url.yuameshi.top/",
"devDependencies": {
"@types/node": "^18.11.15",
"@vitejs/plugin-legacy": "^3.0.1",
"vite": "^4.0.1",
"vite-plugin-html": "^3.2.0"
}
}