-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 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
41
42
43
44
45
46
{
"name": "vite-plugin-playground-elements",
"packageManager": "[email protected]",
"version": "0.0.0",
"type": "module",
"description": "Vite Plugin for Google Playground Elements",
"repository": {
"type": "git",
"url": "https://github.com/userquin/vite-plugin-playground-elements.git"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"dev": "vite",
"build": "unbuild",
"preview": "vite preview"
},
"peerDependencies": {
"vite": "^3.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@antfu/ni": "^0.18.2",
"@types/node": "^18.11.0",
"eslint": "^8.25.0",
"playground-elements": "^0.16.3",
"rollup": "^2.79.1",
"typescript": "^4.8.4",
"unbuild": "^0.8.11",
"vite": "^3.1.8"
}
}