forked from ato-z/cloudflare-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.47 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
41
42
43
44
45
46
47
48
49
50
{
"name": "blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"workers:deploy": "node scripts/workers/deploy.js",
"workers:dev": "node scripts/workers/dev.js",
"workers:new": "node scripts/workers/new.js",
"workers:init": "node scripts/workers/init.js",
"workers:algin": "node scripts/workers/algin.js",
"workers:install": "node scripts/workers/install.js",
"pages:deploy": "node scripts/pages/deploy.js",
"pages:dev": "node scripts/pages/dev.js",
"pages:init": "node scripts/pages/init.js",
"build:apidoc": "apidoc -i zerg/modules -o apidoc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"@types/sha1": "^1.1.3",
"@typescript-eslint/eslint-plugin": ">=5.57.0",
"@typescript-eslint/parser": ">=5.57.0",
"apidoc": "^1.0.3",
"eslint": ">=8.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.57.0",
"ora": "^6.3.1",
"prettier": "^2.8.8",
"shelljs": "^0.8.5",
"typescript": "5.0.4",
"wrangler": "^3.1.0"
},
"dependencies": {
"@ato-z/helper": "link:packages/helper",
"@ato-z/ioc": "link:packages/ioc",
"@ato-z/orm": "link:packages/orm",
"inquirer": "8.2.5",
"sha1": "^1.1.1"
},
"apidoc": {
"name": "cloudflare-blog",
"version": "1.0.0",
"description": "后端管理接口文档",
"title": "cloudflare-blog",
"url": "atoz.ltd"
}
}