-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.71 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.71 KB
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
{
"name": "react-env-secrets",
"version": "1.0.0",
"description": "A zero-config React hook for environment variables - drop-in replacement for process.env",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"lint": "eslint src --ext .ts,.tsx",
"type-check": "tsc --noEmit"
},
"keywords": [
"react",
"environment",
"env",
"environment-variables",
"react-hook",
"typescript",
"zero-config",
"dotenv",
"process-env"
],
"author": {
"name": "Rayyan Waseem",
"email": "rayyanwaseem.live@gmail.com",
"url": "https://github.com/SkullCrawler"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SkullCrawler/react-env-secrets.git"
},
"bugs": {
"url": "https://github.com/SkullCrawler/react-env-secrets/issues"
},
"homepage": "https://github.com/SkullCrawler/react-env-secrets#readme",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"jiti": "^2.5.1",
"react": "^18.3.1",
"rollup": "^4.24.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.11.0"
},
"engines": {
"node": ">=14.0.0"
}
}