-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.38 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.38 KB
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
{
"name": "@powerfulyang/utils",
"version": "1.14.0",
"description": "common utils",
"keywords": [
"utils",
"html2md",
"generate qrcode"
],
"homepage": "https://github.com/powerfulyang/utils#readme",
"bugs": {
"url": "https://github.com/powerfulyang/utils/issues",
"email": "i@powerfulyang.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/powerfulyang/utils.git"
},
"license": "MIT",
"author": {
"name": "powerfulyang",
"email": "i@powerfulyang.com",
"url": "https://powerfulyang.com"
},
"sideEffects": false,
"exports": {
".": {
"import": "./dist/es/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"./esm": {
"import": "./esm/index.mjs",
"types": "./esm/index.d.ts"
}
},
"main": "dist/cjs/index.cjs",
"module": "dist/es/index.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src",
"esm"
],
"scripts": {
"prebuild": "rimraf dist esm",
"build": "run-p build:*",
"build:source": "rollup -c rollup.config.mjs && rollup -c rollup.esm.config.mjs",
"build:types": "tsc -p tsconfig.types.json && tsc-alias -p tsconfig.types.json",
"lint:js": "eslint --ext .ts ./src --fix",
"precommit": "lint-staged",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"prettier": "prettier \"src/**/*.ts\" --write",
"test": "jest",
"tsc-check": "tsc --noEmit"
},
"browserslist": [
"last 2 versions"
],
"dependencies": {
"@apidevtools/swagger-parser": "10.1.0",
"hast-util-raw": "9.0.0",
"json-schema-traverse": "1.0.0",
"mdast-util-to-markdown": "1.5.0",
"qs": "6.11.2",
"reflect-metadata": "0.1.13",
"rehype-parse": "8.0.5",
"rehype-remark": "9.1.2",
"rehype-remove-comments": "5.0.0",
"remark-gfm": "3.0.1",
"remark-stringify": "10.0.3",
"rxjs": "7.8.1",
"string-width": "6.1.0",
"swagger2openapi": "7.0.8",
"unified": "10.1.2",
"unist-util-visit": "5.0.0"
},
"devDependencies": {
"@jest/globals": "29.6.3",
"@powerfulyang/clipboardy": "3.0.0",
"@powerfulyang/lint": "3.7.0",
"@rollup/plugin-typescript": "11.1.2",
"@types/node": "20.5.4",
"@types/qs": "6.9.7",
"@types/swagger2openapi": "7.0.0",
"openapi-types": "12.1.3",
"rollup": "3.28.1",
"typescript": "5.1.6"
}
}