forked from hyperbrew/vite-cep-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "vite-cep-plugin",
"version": "1.1.8",
"description": "A Vite Plugin for building Adobe CEP Extension Panels",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/hyperbrew/vite-cep-plugin.git"
},
"homepage": "https://github.com/hyperbrew/vite-cep-plugin",
"license": "MIT",
"scripts": {
"build": "tsc && ts-node scripts/copy-files.ts",
"prepare": "npm run build",
"publish": "npm publish --access public",
"publish-beta": "npm publish --access public --tag beta"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.12",
"@types/ws": "^8.2.2",
"ts-node": "^10.4.0",
"typescript": "^4.6.4",
"vite": "^4.0.5"
},
"dependencies": {
"@types/archiver": "^5.3.1",
"archiver": "^5.3.1",
"fs-extra": "^10.0.0",
"jszip": "^3.10.1",
"magic-string": "^0.25.7",
"prettify-xml": "^1.2.0"
},
"optionalDependencies": {
"jsxbin": "^2.2.0"
},
"files": [
"lib/**/*"
]
}