-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.27 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"private": true,
"version": "1.0.0",
"description": "custom http client",
"type": "module",
"packageManager": "pnpm@latest",
"scripts": {
"prepare": "husky install",
"init": "npx pnpm install",
"init:force": "rm -rf ./node_modules pnpm-lock.yaml ./packages/*/node_modules && npm run init",
"lint": "eslint . --color",
"lint:fix": "npm run lint -- --fix",
"link": "ddc link",
"dev": "ddc dev",
"build": "ddc build --script-formats=es,cjs,umd,iife --node-package '@deot/http-server,@deot/http'",
"update": "ddc update",
"test": "ddc test",
"add": "ddc add",
"release": "ddc release",
"typecheck": "tsc --noEmit --skipLibCheck"
},
"scripts-info": {
"init": "首次安装",
"link": "依赖包关联",
"add": "创建新包或者给包添加依赖",
"dev": "开发模式",
"build": "打包模式",
"update": "更新 devDependencies 和 dependencies",
"test": "执行测试, 可选择单个包或全部"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deot/http.git"
},
"author": "deot",
"license": "ISC",
"bugs": {
"url": "https://github.com/deot/http/issues"
},
"homepage": "https://github.com/deot/http#readme",
"devDependencies": {
"@deot/dev": "^2.8.8"
}
}