-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.78 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
{
"name": "react-native-whirlwind",
"version": "0.3.0",
"description": "Whirlwind is a utility-first styling framework designed for React Native. It is heavily inspired by Tachyons and Tailwind CSS and uses low-level building blocks for rapidly building custom designs.",
"keywords": [
"react-native",
"css",
"styles",
"stylesheet",
"tailwind",
"tailwindcss",
"tachyon",
"ios",
"android",
"react"
],
"homepage": "https://arabold.github.io/react-native-whirlwind/",
"main": "dist/index.js",
"author": "Andre Rabold",
"license": "MIT",
"bugs": {
"url": "https://github.com/arabold/react-native-whirlwind/issues"
},
"files": [
"dist",
"package.json",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && tsc",
"lint": "tsc --noemit && npx eslint 'src/**/*.{ts,tsx}'",
"preversion": "npm run lint && npm run build && git add dist/",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arabold/react-native-whirlwind.git"
},
"peerDependencies": {
"react-native": ">=0.63.0"
},
"devDependencies": {
"@types/eslint": "^8.4.3",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/prettier": "^2.6.3",
"@types/react-native": "^0.67.9",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
}
}