-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "vite-plugin-runtime-env",
"version": "0.1.1",
"description": "Vite plugin which enables you to configure your environment variables when deploying your app.",
"keywords": [
"docker",
"environment",
"12-factor",
"vite",
"dot-env",
"vite-plugin"
],
"repository": "https://github.com/micha149/vite-plugin-runtime-env",
"bugs": {
"url": "https://github.com/micha149/vite-plugin-runtime-env/issues"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm --clean ",
"watch": "tsup src/index.ts --dts --format cjs,esm --watch",
"release": "npm run build && npx changeset publish",
"lint": "eslint src",
"test": "vitest run"
},
"author": "Michael van Engelshoven <[email protected]>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/node": "^18.11.18",
"eslint-config-brainbits-typescript": "^4.1.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"peerDependencies": {
"vite": "*"
},
"dependencies": {
"magic-string": "^0.30.0"
}
}