forked from grafana/plugin-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.49 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.49 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@grafana/plugin-tools",
"version": "1.0.0",
"repository": "https://github.com/grafana/plugin-tools",
"author": "Grafana",
"private": true,
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"clean": "nx run-many --target=clean",
"build": "nx run-many --target=build --parallel --exclude website",
"dev": "nx run-many --target=dev --parallel",
"docs": "nx start website",
"docs:clear": "nx clear website",
"docs:build": "nx build website --skip-nx-cache",
"docs:test": "nx test website",
"docs:test:ci": "nx test:ci website",
"lint": "nx run-many --target=lint --parallel",
"lint:fix": "nx run-many --target=lint:fix --parallel",
"lint:packages": "nx run-many --target=lint:package --parallel",
"release": "auto shipit -v",
"test": "nx run-many --target=test --parallel",
"test:ci": "nx run-many --target=test --run",
"typecheck": "nx run-many --target=typecheck --parallel",
"prepare": "husky"
},
"devDependencies": {
"@auto-it/all-contributors": "11.3.6",
"@auto-it/first-time-contributor": "11.3.6",
"@auto-it/omit-commits": "11.3.6",
"@auto-it/omit-release-notes": "11.3.6",
"@auto-it/slack": "11.3.6",
"@grafana/eslint-config": "^9.0.0",
"@playwright/test": "^1.58.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@swc/core": "^1.15.11",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/recommended": "^1.0.13",
"@types/glob": "^9.0.0",
"@types/node": "^24.10.11",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"auto": "11.3.6",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.5.2",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"glob": "^13.0.1",
"husky": "^9.1.7",
"lerna": "^9.0.3",
"lint-staged": "^16.2.7",
"prettier": "3.8.1",
"publint": "^0.3.12",
"rollup": "^4.57.1",
"rollup-plugin-delete": "^3.0.2",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-esbuild": "^6.2.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=24"
},
"workspaces": [
"packages/create-plugin",
"packages/sign-plugin",
"docusaurus/website",
"packages/plugin-e2e",
"packages/plugin-meta-extractor",
"packages/plugin-types-bundler",
"packages/eslint-plugin-plugins",
"packages/tsconfig",
"packages/react-detect",
"packages/plugin-docs-parser",
"packages/plugin-docs-cli",
"libs/*"
],
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{css,md,json}": "prettier --write"
},
"overrides": {
"webpack-dev-server": "^5.2.1"
},
"optionalDependencies": {
"@esbuild/linux-x64": "0.27.2",
"@rollup/rollup-linux-x64-gnu": "^4.57.1",
"@swc/html-linux-x64-gnu": "^1.15.11",
"lightningcss-darwin-arm64": "1.31.1",
"lightningcss-darwin-x64": "1.31.1",
"lightningcss-freebsd-x64": "1.31.1",
"lightningcss-linux-arm-gnueabihf": "1.31.1",
"lightningcss-linux-arm64-gnu": "1.31.1",
"lightningcss-linux-arm64-musl": "1.31.1",
"lightningcss-linux-x64-gnu": "1.31.1",
"lightningcss-linux-x64-musl": "1.31.1",
"lightningcss-win32-arm64-msvc": "1.31.1",
"lightningcss-win32-x64-msvc": "1.31.1"
}
}