-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
155 lines (155 loc) · 5.68 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "kirinriki",
"version": "0.1.2",
"description": "Koa2 + Typescript = kirinriki. Use Typescript's decorator implement auto injection.",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
}
},
"publishConfig": {
"main": "./cjs/index.cjs",
"module": "./esm/index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"require": "./cjs/index.cjs",
"import": "./esm/index.mjs",
"types": "./types/index.d.ts"
}
}
},
"scripts": {
"clean": "rm -rf dist && rm -rf dist",
"test": "",
"#test": "pnpm build:test && npx mocha test",
"build": "pnpm clean && tsc -p tsconfig.build.json --noEmit && rollup -c",
"compile": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"deploy": "npm build && npm publish ",
"buildold": "pnpm clean && npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp ",
"build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/",
"build:js": "del-cli --force dist && npx rollup -c",
"build:doc": "del-cli --force docs/api && npx api-documenter markdown --input src --output docs/api",
"build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose",
"eslint": "eslint --ext .ts,.js ./",
"watch": "concurrently \"tsc -w --project tsconfig.json\" \"tsc-alias -w --project tsconfig.json\"",
"#prepublishOnly": "npm test && npm run build",
"#prerelease": "npm test && npm run build",
"#release": "standard-version",
"#release:pre": "npm run release -- --prerelease",
"#release:major": "npm run release -- --release-as major",
"#release:minor": "npm run release -- --release-as minor",
"pub": "git push --follow-tags origin && npm publish",
"$test": "npm run eslint && jest --passWithNoTests",
"test:cov": "jest --collectCoverage --detectOpenHandles",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"directories": {
"doc": "docs"
},
"engines": {
"node": ">18.0.0"
},
"author": {
"name": "Hanrea",
"email": "hi@vecmat.com"
},
"license": "ISC",
"maintainers": [
{
"name": "Vecmat",
"email": "hi@vecmat.com"
}
],
"dependencies": {
"@types/koa-compose": "~3.2.5",
"@types/formidable": "^2.0.4",
"@vecmat/vendor": "workspace:*",
"@vecmat/printer": "workspace:*",
"@grpc/grpc-js": "1.5.9",
"@grpc/proto-loader": "~0.7.4",
"@koa/router": "^12.0.0",
"class-validator": "^0.14.1",
"formidable": "^2.0.1",
"inflation": "^2.0.0",
"koa": "2.15.0",
"lodash": "^4.17.21",
"mathjs": "^11.5.0",
"moment": "^2.29.4",
"murmurhash": "^2.0.1",
"on-finished": "^2.4.1",
"raw-body": "^2.5.1",
"rc": "^1.2.8",
"reflect-metadata": "0.1.13",
"tslib": "^2.4.1",
"xml2js": "^0.4.23",
"koa-compose": "~4.1.0",
"globby": "^11.1.0",
"protobufjs": "~7.1.2",
"cron": "~2.1.0",
"generic-pool": "~3.9.0",
"ioredis": "^4.28.5",
"uuid": "^9.x.x",
"ws": "^8.11.0",
"path-to-regexp": "~6.2.1",
"concurrently": "~8.0.1",
"libphonenumber-js": "^1.9.50"
},
"devDependencies": {
"@babel/core": "~7.22.9",
"@microsoft/api-documenter": "7.16.0",
"@microsoft/api-extractor": "7.19.5",
"@types/co": "^4.6.3",
"@types/inflation": "^2.0.1",
"@types/koa": "^2.x.x",
"@types/koa__router": "^8.x.x",
"@types/lodash": "^4.17.0",
"@types/on-finished": "^2.3.1",
"@types/rc": "^1.2.1",
"@types/uuid": "8.3.4",
"@types/validator": "^13.x.x",
"@types/ws": "^8.x.x",
"@types/ioredis": "^4.x.x",
"@types/xml2js": "^0.4.9",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.x.x",
"@vecmat/eslint-config": "^0.1.6",
"@vecmat/eslint-config-ts": "^0.1.6",
"commitlint": "16.2.3",
"conventional-changelog-cli": "^2.x.x",
"copyfiles": "^2.x.x",
"del-cli": "^4.x.x",
"eslint-plugin-jest": "^26.x.x",
"husky": "^7.0.4",
"jest-html-reporters": "^3.x.x",
"standard-version": "^9.3.2",
"ts-jest": "^28.x.x",
"ts-node": "10.7.0",
"commitlint-config-gitmoji": "~2.3.1",
"@types/node": "^20.x.x",
"typescript": "~5.4.2",
"tsc-alias": "~1.8.2",
"prettier": "^3.0.0",
"eslint": "^8.44.0",
"@swc/core": "^1.3.7",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.5.0",
"@silverhand/ts-config": "^5.0.0",
"@silverhand/eslint-config": "^5.0.0",
"rollup": "~4.13.0",
"rollup-plugin-copy": "~3.5.0",
"rollup-plugin-summary": "~2.0.0",
"@rollup/plugin-typescript": "11.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"jest": "^29.5.0",
"jest-location-mock": "^2.0.0",
"jest-matcher-specific-error": "^1.0.0"
},
"packageManager": "pnpm@9.3.0+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631"
}