-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.07 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.07 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
{
"name": "vite-plugin-component-debugger",
"version": "2.2.0",
"description": "Highly customizable Vite plugin that adds data attributes to JSX/TSX elements for development tracking, debugging, and testing. Features path filtering, transformers, presets, and more.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build",
"test": "vitest --run",
"test:coverage": "vitest --coverage --run",
"lint": "eslint src/**/*.ts",
"pre-publish": "node scripts/pre-publish.js",
"check": "npm run lint && npm run test && npm run build",
"clean": "rm -rf dist node_modules"
},
"keywords": [
"vite",
"vite-plugin",
"react",
"jsx",
"tsx",
"component-tagging",
"debugging",
"development-tools",
"devtools",
"testing",
"e2e",
"playwright",
"cypress",
"component-tracking",
"customizable"
],
"author": "Tonye Brown <hello@tonyebrown.com> (https://www.tonyebrown.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/canadianeagle/vite-plugin-component-debugger.git"
},
"bugs": {
"url": "https://github.com/canadianeagle/vite-plugin-component-debugger/issues"
},
"homepage": "https://www.tonyebrown.com/apps/vite-plugin-component-debugger",
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"dependencies": {
"@babel/parser": "^7.24.0",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.7",
"minimatch": "^10.0.3"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/estree": "^1.0.5",
"@types/node": "^20.11.0",
"eslint": "^8.56.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.0",
"vitest": "^1.2.0"
},
"engines": {
"node": ">=18.12.0"
}
}