-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 915 Bytes
/
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" :"vite-plugin-integrated",
"version" :"1.1.10",
"type" :"module",
"license" :"MIT",
"main" :"plugin/index.js",
"module" :"plugin/index.mjs",
"types" :"plugin/index.d.ts",
"scripts" :{
},
"keywords" :[
"vite-plugin",
"vite plugin",
"vite"
],
"bugs" :{
"url":"https://github.com/Traineratwot/vite-plugin-integrated/issues"
},
"homepage" :"https://github.com/Traineratwot/vite-plugin-integrated#readme",
"exports" :{
"." :{
"types" :"./plugin/index.d.ts",
"require":"./plugin/index.cjs",
"import" :"./plugin/index.mjs"
},
"./*":"./plugin"
},
"files" :[
"plugin"
],
"devDependencies":{
"typescript" :"^5.0.2",
"vite" :"^4.3.2",
"vite-plugin-inspect":"^0.7.24"
},
"dependencies" :{
"ejs" :"^3.1.9",
"jsdom":"^21.1.1"
}
}