-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "vite-plugin-nodecg",
"version": "2.1.0",
"description": "Vite plugin to enable its use with NodeCG",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"vite-plugin"
],
"engines": {
"node": ">=16"
},
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"check-format": "prettier --check ."
},
"author": {
"name": "Daniel Shields",
"email": "[email protected]",
"url": "https://danielshields.uk"
},
"repository": {
"type": "git",
"url": "https://github.com/nodecg/vite-plugin-nodecg.git"
},
"license": "ISC",
"dependencies": {
"globby": "^14.0.1",
"minimatch": "^9.0.3"
},
"devDependencies": {
"@types/node": "^20.11.25",
"prettier": "^3.4.2",
"rollup": "^4.12.1",
"typescript": "^5.4.2",
"vite": "^5.1.5"
},
"peerDependencies": {
"vite": "^4.0.4 || ^5.1.5"
},
"packageManager": "[email protected]"
}