-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 840 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 840 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
{
"name": "weread",
"version": "1.0.1",
"repository": "git@github.com:champkeh/weread.git",
"author": "champkeh <champion.ge@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "deno run -A --unstable src/server.ts",
"style": "deno run -A test/style.ts",
"html": "deno run -A test/html.ts",
"clean": "deno run -A --unstable scripts/clean.ts",
"read": "deno run -A --unstable scripts/read.ts",
"check:type": "deno check --unstable src/**/*.ts",
"lint": "deno lint src/**/*.ts",
"fmt": "deno fmt src/**/*.ts",
"logs": "deno run -A scripts/logs.ts",
"compile:pre-push": "deno compile -A --output .husky/pre-push scripts/pre-push.ts",
"prepare": "husky install",
"webnovel": "deno run -A --unstable src/apis/webnovel/chapter.ts"
},
"devDependencies": {
"husky": "^8.0.0"
}
}