-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "@thecodingmachine/rnb-toolbox",
"version": "1.0.1",
"description": "Help all @thecodingmachine/react-native-boilerplate plugins creators to build awesome custom plugins",
"repository": {
"type": "git",
"url": "https://github.com/thecodingmachine/rnb-toolbox"
},
"author": "TheCodingMachine Lyon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thecodingmachine/rnb-toolbox/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"lint": "eslint .",
"build": "tsc",
"publish-lib": "yarn build && yarn publish --access public",
"publish-beta": "yarn build && yarn publish --access public --tag beta"
},
"keywords": [
"thecodingmachine",
"typescript",
"library",
"boilerplate",
"plugin",
"toolbox",
"react-native",
"rnb-toolbox"
],
"dependencies": {
"kleur": "^4.1.4",
"prompts": "^2.4.2",
"typescript": "4.5.5"
},
"devDependencies": {
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0"
}
}