forked from 88825/wereadx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 909 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
{
"name": "wereadx",
"version": "1.0.1",
"description": "微信读书辅助工具,可用于书籍下载及自动阅读、自动兑换体验卡等",
"repository": "[email protected]:champkeh/wereadx.git",
"author": "champkeh <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "deno run -A --unstable src/server.ts local",
"serve": "deno run -A --unstable src/server.ts",
"check:type": "deno check --unstable src/**/*.ts",
"lint": "deno lint src/**/*.ts",
"fmt": "deno fmt src/**/*.ts",
"compile:pre-push": "deno compile -A --output .husky/pre-push scripts/pre-push.ts",
"prepare": "husky install",
"log": "deno run -A --unstable scripts/pre-push.ts",
"example:jdread": "deno run -A --unstable examples/jdread/index.ts"
},
"devDependencies": {
"husky": "^8.0.0"
},
"dependencies": {
"crypto-js": "^4.2.0",
"uuid": "^9.0.1"
}
}