-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 842 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 842 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
35
36
37
38
39
{
"name": "snapurl",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "A high-performance URL shortener using Cloudflare Workers and KV.",
"repository": {
"type": "git",
"url": "https://github.com/your-username/snapurl.git"
},
"keywords": [
"url-shortener",
"cloudflare-workers",
"cloudflare-kv",
"serverless"
],
"author": "Your Name",
"license": "GPL-3.0-or-later",
"scripts": {
"test": "c8 vitest --root test run",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"c8": "^10.1.3",
"globals": "^16.3.0",
"vitest": "~3.2.0",
"esbuild": "^0.25.8"
},
"dependencies": {
"chalk": "^5.4.1",
"eslint": "^9.32.0",
"inquirer": "^12.8.2",
"jsdom": "^26.1.0",
"nanoid": "^5.1.5"
}
}