-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
120 lines (120 loc) · 3 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
{
"name": "@diplodoc/cli",
"version": "4.48.1",
"description": "Make documentation using yfm-docs in Markdown and HTML formats",
"keywords": [
"markdown",
"yandex",
"docs",
"yfm",
"documentation",
"tool",
"tools",
"generator"
],
"repository": {
"type": "git",
"url": "git@github.com:diplodoc-platform/cli.git"
},
"license": "MIT",
"author": "Yandex Data UI Team <data-ui@yandex-team.ru>",
"exports": {
"./package": "./package.json"
},
"main": "build/index.js",
"bin": {
"docs": "build/index.js",
"yfm": "build/index.js"
},
"files": [
"build",
"assets",
"schemas",
"src"
],
"scripts": {
"build": "node scripts/build.cli.js",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run lint && npm run build",
"start": "node build/index.js",
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"regenerate-schemas": "scripts/regenerate-schemas.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@diplodoc/client": "^3.1.8",
"@diplodoc/translation": "^1.5.0",
"katex": "^0.16.9",
"shelljs": "0.8.5",
"threads": "1.7.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.525.0",
"@diplodoc/eslint-config": "^2.0.0",
"@diplodoc/latex-extension": "^1.3.2",
"@diplodoc/mermaid-extension": "^1.3.2",
"@diplodoc/openapi-extension": "^2.6.0",
"@diplodoc/prettier-config": "^2.0.0",
"@diplodoc/search-extension": "^1.1.5",
"@diplodoc/transform": "^4.38.2",
"@diplodoc/tsconfig": "^1.0.2",
"@gravity-ui/page-constructor": "^5.29.1",
"@octokit/core": "4.2.4",
"@types/async": "^3.2.15",
"@types/chalk": "2.2.0",
"@types/glob": "^8.1.0",
"@types/html-escaper": "^3.0.0",
"@types/js-yaml": "4.0.9",
"@types/json-stringify-safe": "^5.0.3",
"@types/lodash": "4.14.195",
"@types/mime-types": "2.1.4",
"@types/node": "^18.19.4",
"@types/shelljs": "0.8.15",
"@types/tar-stream": "^2.2.2",
"@types/yargs": "17.0.24",
"@vitest/coverage-v8": "^1.2.1",
"ajv": "^8.11.0",
"async": "^3.2.4",
"axios": "^1.6.7",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"csp-header": "^5.2.1",
"esbuild": "^0.23.1",
"glob": "^8.0.3",
"html-escaper": "^3.0.3",
"husky": "8.0.3",
"js-yaml": "4.1.0",
"lint-staged": "^12.5.0",
"lodash": "4.17.21",
"mime-types": "2.1.35",
"minimatch": "^9.0.3",
"node-html-parser": "^6.1.5",
"normalize-path": "^3.0.0",
"simple-git": "3.22.0",
"slugify": "^1.6.5",
"tapable": "^2.2.1",
"tar-stream": "^3.1.4",
"ts-dedent": "^2.2.0",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.1.3",
"walk-sync": "^3.0.0"
},
"engines": {
"node": ">=18.*"
}
}