-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 983 Bytes
/
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
{
"name": "vite-plugin-execute",
"version": "0.0.2",
"description": "Execute your script after build",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./typings/index.d.ts",
"exports": {
".": {
"types": "./typings/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"type": "module",
"files": [
"dist",
"typings"
],
"scripts": {
"dev": "vite build --mode development",
"build": "vite build",
"dts": "tsc --emitDeclarationOnly --declaration --declarationDir ./typings"
},
"author": "Jove Jonovski <[email protected]> (https://github.com/datyin)",
"license": "MIT",
"devDependencies": {
"@datyin/eslint-config-ts": "^0.0.7",
"@types/node": "^18.11.9",
"eslint": "^8.27.0",
"typescript": "^4.8.4",
"vite": "^3.2.2"
},
"keywords": [
"vite",
"vite-plugin",
"spawn",
"run",
"execute",
"node",
"electron"
]
}