-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
47
48
49
{
"name": "vite-plugin-themeplate",
"title": "ThemePlate Vite",
"version": "1.6.0",
"description": "Straight-forward Vite integration for WordPress",
"keywords": [
"vite",
"vite-plugin",
"wordpress",
"themeplate"
],
"license": "MIT",
"author": {
"name": "Gene Alyson Fortunado Torcende",
"email": "genealyson.torcende@gmail.com"
},
"files": [
"/dist"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ThemePlate/Vite.git"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"devDependencies": {
"@types/node": "^20.12.12",
"rollup": "^4.18.0",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vite": "^5.2.12"
},
"peerDependencies": {
"vite": "^4.0.4 || ^5.0.11"
},
"scripts": {
"build": "unbuild",
"watch": "unbuild --stub",
"prepublishOnly": "npm run build"
}
}