-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.72 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
{
"name": "@geprog/vite-plugin-env-config",
"version": "0.0.0-semantic-release",
"description": "Vite Plugin for providing config from environment variables at runtime",
"homepage": "https://geprog.com",
"repository": "github:geprog/vite-plugin-env-config",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./getEnvConfig": {
"import": "./dist/getEnvConfig.mjs",
"require": "./dist/getEnvConfig.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"getEnvConfig": [
"./dist/getEnvConfig.d.ts"
]
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsup src/index.ts src/getEnvConfig.ts --dts --format cjs,esm",
"clean": "rm -rf dist/ node_modules/",
"lint": "eslint --max-warnings 0 .",
"lint:format": "prettier --check .",
"start": "pnpm run build --watch",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"release": "semantic-release"
},
"devDependencies": {
"@geprog/eslint-config": "2.1.1",
"@geprog/semantic-release-config": "2.0.0",
"@types/supertest": "6.0.2",
"@vitest/coverage-v8": "1.4.0",
"eslint": "8.48.0",
"jsdom": "24.0.0",
"prettier": "3.2.5",
"semantic-release": "23.0.5",
"supertest": "6.3.4",
"tsup": "8.0.2",
"typescript": "5.4.2",
"vite": "5.1.6",
"vitest": "1.4.0"
},
"peerDependencies": {
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"engines": {
"pnpm": ">=7"
},
"publishConfig": {
"access": "public"
}
}