forked from garronej/vite-envs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 1.98 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
72
73
{
"name": "vite-envs",
"version": "4.0.10",
"description": "Env var in Vite at container startup",
"repository": {
"type": "git",
"url": "git://github.com/garronej/vite-envs.git"
},
"scripts": {
"build": "tsc && yarn grant-exec-perms",
"grant-exec-perms": "node dist/tools/grant-exec-perms.js",
"link-in-app": "ts-node --skipProject scripts/link-in-app.ts",
"link-in-starter": "yarn link-in-app vite-envs-starter",
"_format": "prettier '**/*.{ts,tsx,json,md}'",
"format": "yarn _format --write",
"format:check": "yarn _format --list-different"
},
"bin": {
"vite-envs": "dist/bin/vite-envs.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js",
"./client": "./client.d.ts",
"./types/hot": "./types/hot.d.ts",
"./types/importGlob": "./types/importGlob.d.ts"
},
"lint-staged": {
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
"author": "u/garronej",
"license": "MIT",
"files": [
"src/",
"dist/",
"!dist/tsconfig.tsbuildinfo"
],
"keywords": [
"react",
"create-react-app",
"environment-variables",
"typescript"
],
"homepage": "https://github.com/garronej/vite-envs",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.4.4",
"ejs": "^3.1.9",
"magic-string": "^0.30.7",
"tsafe": "^1.6.6"
},
"devDependencies": {
"@types/ejs": "^3.1.4",
"@types/node": "^20.8.10",
"husky": "^4.3.8",
"lint-staged": "^11.1.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^4.1.5",
"vite": "^5.1.3",
"json5": "^2.2.3",
"yaml": "^2.3.4"
}
}