-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
42
43
44
45
46
47
{
"name": "vite-plugin-figaro-js",
"version": "0.0.1",
"description": "Use figaro-js to load environment variables in your vite project",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsc --noEmit && vite build",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yellowspot/vite-plugin-figaro-js.git"
},
"keywords": [
"vite",
"plugin",
"figaro-js"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/yellowspot/vite-plugin-figaro-js/issues"
},
"homepage": "https://github.com/yellowspot/vite-plugin-figaro-js#readme",
"engines": {
"node": ">= 18.x"
},
"devDependencies": {
},
"dependencies": {
}
}