-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.6 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.6 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
110
111
112
113
114
115
{
"name": "react-data-attributes-plugin",
"version": "1.0.0",
"description": "Universal plugin (Vite/Rollup/Webpack/Esbuild) to automatically add file and line number data attributes to JSX elements for debugging",
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./vite": {
"import": "./dist/vite.mjs",
"types": "./dist/vite.d.ts"
},
"./rollup": {
"import": "./dist/rollup.mjs",
"types": "./dist/rollup.d.ts"
},
"./webpack": {
"import": "./dist/webpack.mjs",
"types": "./dist/webpack.d.ts"
},
"./esbuild": {
"import": "./dist/esbuild.mjs",
"types": "./dist/esbuild.d.ts"
},
"./core": {
"import": "./dist/core.mjs",
"types": "./dist/core.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"vite",
"rollup",
"webpack",
"esbuild",
"vite-plugin",
"rollup-plugin",
"webpack-loader",
"esbuild-plugin",
"react",
"jsx",
"data-attributes",
"debugging",
"development",
"source-map",
"file-location",
"line-number",
"bundler",
"universal"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/syukronarie/react-data-attributes-plugin.git"
},
"bugs": {
"url": "https://github.com/syukronarie/react-data-attributes-plugin/issues"
},
"homepage": "https://github.com/syukronarie/react-data-attributes-plugin#readme",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0",
"rollup": "^3.0.0 || ^4.0.0",
"esbuild": "^0.17.0 || ^0.18.0 || ^0.19.0",
"webpack": "^5.0.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
},
"rollup": {
"optional": true
},
"esbuild": {
"optional": true
},
"webpack": {
"optional": true
},
"@babel/core": {
"optional": true
}
},
"optionalDependencies": {
"@babel/core": "^7.0.0"
},
"scripts": {
"build": "node build.mjs",
"build:watch": "node build.mjs --watch",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/babel__core": "^7.20.0",
"@types/webpack": "^5.28.0",
"esbuild": "^0.19.0",
"typescript": "^5.3.0"
}
}