-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
65 lines (65 loc) · 1.47 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
{
"name": "react-native-figma-squircle",
"description": "Figma-flavored squircles for React Native",
"author": "Tien Pham",
"version": "0.3.4",
"license": "MIT",
"main": "lib/commonjs/index.js",
"react-native": "src/index.tsx",
"source": "src/index.tsx",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"scripts": {
"prepare": "bob build && husky install",
"tsc": "tsc --noEmit",
"lint": "eslint src --ext ts,tsx"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-svg": "*"
},
"dependencies": {
"figma-squircle": "^0.2.1"
},
"devDependencies": {
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.26.0",
"eslint-config-tienphaw": "^1.4.0",
"husky": "^6.0.0",
"prettier": "^2.3.0",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-builder-bob": "^0.18.1",
"react-native-svg": "12.1.0",
"typescript": "^4.2.4"
},
"keywords": [
"squircle",
"react",
"react-native",
"figma"
],
"repository": {
"type": "git",
"url": "https://github.com/tienphaw/react-native-figma-squircle.git"
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}