-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
71 lines (71 loc) · 1.95 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "rollup-plugin-dotenv",
"version": "0.5.1",
"description": "Rollup plugin that loads available .env files and replaces the defined variables with their values",
"main": "dist/rollup-plugin-dotenv.cjs.js",
"module": "dist/rollup-plugin-dotenv.esm.js",
"exports": {
".": {
"types": {
"import": "./dist/rollup-plugin-dotenv.cjs.mjs",
"default": "./dist/rollup-plugin-dotenv.cjs.js"
},
"module": "./dist/rollup-plugin-dotenv.esm.js",
"import": "./dist/rollup-plugin-dotenv.cjs.mjs",
"default": "./dist/rollup-plugin-dotenv.cjs.js"
},
"./package.json": "./package.json"
},
"types": "dist/rollup-plugin-dotenv.cjs.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "preconstruct build",
"postbuild": "prettier --write dist/*.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andarist/rollup-plugin-dotenv.git"
},
"keywords": [
"rollup",
"dotenv"
],
"author": "Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andarist/rollup-plugin-dotenv/issues"
},
"homepage": "https://github.com/Andarist/rollup-plugin-dotenv#readme",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@preconstruct/cli": "^2.7.0",
"babel-plugin-macros": "^3.1.0",
"husky": "^4.2.5",
"lint-staged": "^13.0.3",
"pipeline.macro": "^1.1.0",
"prettier": "^2.7.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@rollup/plugin-replace": "^5.0.1",
"dotenv": "^16.0.3"
},
"peerDependencies": {
"rollup": "^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
},
"preconstruct": {
"exports": {
"importConditionDefaultExport": "default"
},
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"importsConditions": true
}
}
}