-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 3.04 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@dinofe/xt-core",
"version": "1.0.0-6",
"author": {
"name": "JohnieXu",
"email": "281910378@qq.com",
"url": "https://github.com/johniexu"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/idinofe/xt-core.git"
},
"keywords": [
"utils",
"business lib",
"http"
],
"homepage": "https://github.com/idinofe/xt-core",
"bugs": {
"url": "https://github.com/idinofe/xt-core/issues"
},
"contributors": [
"JohnieXu (https://github.com/johniexu)"
],
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@microsoft/api-documenter": "^7.22.33",
"@microsoft/api-extractor": "^7.36.4",
"@types/koa": "^2.13.6",
"@types/koa-router": "^7.4.4",
"@types/qs": "^6.9.7",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"father": "^4.2.3",
"husky": "^7.0.1",
"koa": "^2.14.2",
"koa-body": "^6.0.1",
"koa-router": "^12.0.0",
"release-it": "^16.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.9.5",
"vitest": "^0.34.6"
},
"scripts": {
"prepare": "husky install",
"clean": "rimraf lib && rimraf types",
"clean:service": "rimraf service",
"build:service": "npm run clean:service && tsc -p tsconfig.service.json",
"mock:service": "npm run build:service && node service/test/start_service.js",
"build:types": "npx tsc --declaration --outDir types --emitDeclarationOnly -p tsconfig.build.json",
"build": "npm run build:types && father build",
"docs:dev": "echo please run cd ./tsdoc then run npm run docs:dev",
"docs:build": "npm run build && npm run api:extractor && npm run api:documenter && echo please run cd ./tsdoc then run npm run docs:build",
"test": "node test/index.test.js",
"vitest": "vitest",
"vitest:run": "vitest run",
"vitest:ui": "vitest --ui",
"release:local": "npm publish --registry http://127.0.0.1:4873 --tag latest",
"releaseit": "release-it --preRelease",
"api:extractor": "api-extractor run --local --verbose",
"api:documenter": "api-documenter markdown -i tsdoc/temp -o tsdoc/api"
},
"sideEffects": false,
"files": [
"dist",
"types"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/cjs/index.js"
},
"./*": {
"types": "./types/*.d.ts",
"import": "./dist/esm/*.js",
"default": "./dist/cjs/*.js"
},
"./storage/*": {
"types": "./types/storage/*.d.ts",
"import": "./dist/esm/storage/*.js",
"default": "./dist/cjs/storage/*.js"
}
},
"types": "./types/index.d.ts",
"module": "./dist/esm/index",
"main": "./dist/cjs/index",
"unpkg": "./dist/umd/xt-core.min.js",
"jsdelivr": "./dist/umd/xt-core.min.js",
"dependencies": {
"@types/big.js": "^6.1.6",
"apisauce": "^3.0.1",
"big.js": "^6.2.1",
"decrypt-core": "^1.2.2",
"dexie": "^3.0.3",
"qs": "^6.11.2"
},
"optionalDependencies": {
"esbuild-android-arm64": "^0.15.18"
}
}