-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 916 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-vue-env",
"version": "1.0.6",
"description": "Provide VUE_APP_ env variables to VITE app",
"main": "index.js",
"scripts": {
"build": "tsc -d index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notiv-nt/vite-plugin-vue-env.git"
},
"keywords": [
"vite-plugin",
"vite",
"dotenv",
"env",
"vue",
"vue-cli"
],
"author": "Mikhail Novikov",
"license": "MIT",
"bugs": {
"url": "https://github.com/notiv-nt/vite-plugin-vue-env/issues"
},
"homepage": "https://github.com/notiv-nt/vite-plugin-vue-env#readme",
"dependencies": {
"dotenv": "^14.2.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^17.0.10",
"jest": "^27.1.0",
"ts-jest": "^27.0.5",
"typescript": "^4.2.3"
},
"files": [
"index.js",
"index.ts",
"index.d.ts"
]
}