-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.31 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "runtime-env-cli",
"author": "Jose V Sebastian",
"description": "This npm package enables environment agnostic builds for frameworks like create-react-app and inject environment variables as `window.env` in built html files before server startup.",
"repository": {
"type": "git",
"url": "git+https://github.com/JoseVSeb/runtime-env.git"
},
"version": "1.0.1",
"license": "MIT",
"keywords": [
"cli",
"automation",
"environment-agnostic",
"environment",
"agnostic",
"build",
"runtime",
"env",
"create-react-app",
"cra"
],
"scripts": {
"start": "tsx ./src/cli",
"build": "rollup -c",
"prepack": "pnpm build",
"test": "jest --watch",
"lint": "eslint --quiet --fix",
"prepare": "husky install"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write",
"eslint --quiet"
]
},
"bin": {
"runtime-env": "bin/runtime-env"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"cheerio": "1.0.0-rc.12",
"commander": "^11.1.0",
"glob": "^10.3.10",
"lodash": "^4.17.21"
},
"devDependencies": {
"@optimize-lodash/rollup-plugin": "^4.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.2",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"rollup": "^4.9.5",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-preserve-shebang": "^1.0.1",
"rollup-plugin-version-injector": "^1.3.3",
"semantic-release": "^23.0.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}