-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.15 KB
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
{
"name": "personal-navigation",
"version": "1.0.0",
"description": "基于Cloudflare Worker的个人导航网站",
"main": "src/server.js",
"scripts": {
"dev": "npx wrangler dev",
"deploy": "node scripts/deploy.js",
"deploy:direct": "npx wrangler@latest deploy",
"preview": "npx wrangler dev --remote",
"tail": "npx wrangler tail",
"kv:create": "npx wrangler kv:namespace create NAVIGATION_KV",
"kv:create:preview": "npx wrangler kv:namespace create NAVIGATION_KV --preview",
"update:wrangler": "npm install --save-dev wrangler@latest"
},
"keywords": [
"navigation",
"cloudflare",
"worker",
"personal-website",
"bookmark",
"导航网站"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"wrangler": "^4.34.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/personal-navigation.git"
},
"homepage": "https://github.com/your-username/personal-navigation#readme",
"bugs": {
"url": "https://github.com/your-username/personal-navigation/issues"
}
}