-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.66 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": "@eliav2/react-native-collapsible-view",
"version": "1.5.0",
"description": "A collapsible View element implemented using react-native-collapsible",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"homepage": "https://eliav2.github.io/react-native-collapsible-view/",
"repository": {
"type": "git",
"url": "https://github.com/Eliav2/react-native-collapsible-view"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm start --prefix ./example",
"build": "concurrently \"npm run build:cjs\" \"npm run build:esm\"",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc",
"build-watch": "concurrently \"npm run build-watch:cjs\" \"npm run build-watch:esm\"",
"build-watch:esm": "tsc -w",
"build-watch:cjs": "tsc -w -p tsconfig.cjs.json",
"prepack": "npm run build"
},
"prettier": {
"printWidth": 120
},
"author": "Eliav Louski",
"license": "MIT",
"dependencies": {
"react-native-collapsible": "^1.6.1",
"react-native-svg": "^13.13.0"
},
"devDependencies": {
"@babel/runtime": "^7.13.10",
"@types/react": "^18.2.21",
"@types/react-native": "^0.72.2",
"concurrently": "^8.2.1",
"react": "^16.10.0",
"react-native": "^0.72.4",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"keywords": [
"react",
"react-native",
"react-native-collapsible-view",
"view",
"collapsible",
"expandable",
"collapsed",
"expanded",
"animation",
"animated",
"spinner",
"IOS",
"Android",
"Web"
],
"files": [
"dist",
"src"
]
}