-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "react-link-to-vscode",
"private": false,
"version": "0.1.5",
"description": "this project provides a wrapper to display a link to the file path of a component on screen during development.",
"license": "MIT",
"types": "./dist/LinkToVscode.d.ts",
"main": "./dist/react-link-to-vscode.umd.js",
"module": "./dist/react-link-to-vscode.es.js",
"exports": {
".": {
"import": "./dist/react-link-to-vscode.es.js",
"require": "./dist/react-link-to-vscode.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^18.6.1",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vite-plugin-dts": "^1.4.0"
},
"peerDependencies": {
"react": "16.x || 17.x || 18.x",
"react-dom": "16.x || 17.x || 18.x"
}
}