-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.67 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.67 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
{
"name": "@grafana/plugin-docs-cli",
"version": "0.0.3",
"private": true,
"description": "CLI tool for developing, validating and previewing Grafana plugin documentation locally.",
"type": "module",
"bin": "./dist/bin/run.js",
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"repository": {
"directory": "packages/plugin-docs-cli",
"url": "https://github.com/grafana/plugin-tools"
},
"author": "Grafana",
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"provenance": true
},
"scripts": {
"build": "rollup -c ../../rollup.config.ts --configPlugin esbuild",
"dev": "rollup -c ../../rollup.config.ts --configPlugin esbuild --watch",
"lint": "eslint --cache ./src",
"lint:fix": "npm run lint -- --fix",
"lint:package": "publint",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"grafana",
"plugin",
"documentation",
"cli",
"preview",
"validation"
],
"bugs": {
"url": "https://github.com/grafana/plugin-tools/issues"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@grafana/plugin-docs-parser": "^0.0.2",
"chokidar": "^4.0.0",
"debug": "^4.3.7",
"ejs": "^4.0.1",
"express": "^5.0.0",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"hast-util-to-html": "^9.0.0",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/github-slugger": "^2.0.0",
"@types/minimist": "^1.2.5",
"@types/supertest": "^6.0.2",
"supertest": "^7.0.0"
}
}