-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
59 lines (59 loc) · 1.41 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
{
"name": "@grapp/stacks",
"description": "A set of components for building layouts in React Native. Powered by React Native Unistyles.",
"version": "3.1.0",
"license": "MIT",
"author": "Marcin Dziewulski <hello@mobily.pl>",
"react-native": "src/index.ts",
"source": "src/index.ts",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.mts",
"files": [
"src",
"lib",
"plugin",
"*.md",
"package.json"
],
"scripts": {
"build": "rm -rf ./lib && tsup",
"types:check": "tsc --noEmit"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"react-native",
"react-native-web",
"typescript",
"stacks",
"layout",
"ui"
],
"homepage": "https://stacks.grapp.dev",
"bugs": "https://github.com/grapp-dev/stacks/issues",
"repository": {
"type": "git",
"url": "https://github.com/grapp-dev/stacks.git"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.71.0",
"react-native-unistyles": ">=2.0"
},
"devDependencies": {
"@grapp/eslint-config": "^0.1.1",
"@grapp/prettier-config": "^0.1.1",
"@grapp/ts-config": "^0.1.3",
"@types/node": "^18.11.10",
"@types/react": "~18.2.45",
"react": "^18.2.0",
"react-native": "0.73.6",
"react-native-unistyles": "^2.5.5",
"tsup": "^8.0.2",
"typescript": "^5.4.4"
},
"cacheDirectories": ["node_modules"]
}