-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 798 Bytes
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
{
"name": "vite-plugin-ejs",
"version": "2.0.0",
"description": "Use Ejs in your entrypoint i.e index.html",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/trapcodeio/vite-plugin-ejs.git",
"author": "trapcodeio",
"license": "MIT",
"private": false,
"scripts": {
"build": "npx tsc -p tsconfig.json",
"watch": "npx tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^26.0.0",
"ejs": "^6.0.1",
"typescript": "^6.0.3",
"vite": "^8.1.0",
"vitest": "^4.1.9"
},
"peerDependencies": {
"ejs": ">=3",
"vite": ">=5.0.0"
},
"keywords": [
"vite",
"vite-plugin-ejs",
"ejs"
]
}