-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1 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
{
"name": "react-native-config-codegen",
"version": "1.0.1",
"description": "Quickly generate a TypeScript declaration file for your .env files",
"type": "commonjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "jackstudd",
"license": "MIT",
"homepage": "https://github.com/jackstudd/react-native-config-codegen",
"repository": {
"type": "git",
"url": "https://github.com/jackstudd/react-native-config-codegen"
},
"keywords": [
"react-native-config",
"declaration",
"types",
"typescript",
"env",
"config",
"config-var",
"react-native"
],
"files": [
"lib/**/*"
],
"bin": "lib/index.js",
"scripts": {
"build": "tsc",
"prepare": "yarn build"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^18.14.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"prettier": {
"bracketSameLine": true,
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all"
}
}