-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
66
67
68
{
"name": "react-native-dark",
"author": "Formidable",
"private": false,
"description": "Tiny wrapper around React Native's StyleSheet.create API to easily support dark mode.",
"keywords": [
"react",
"react-native",
"dark-mode"
],
"version": "0.1.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"plugin.js",
"shim.d.ts"
],
"repository": {
"url": "https://github.com/FormidableLabs/react-native-dark/"
},
"homepage": "https://github.com/FormidableLabs/react-native-dark/",
"scripts": {
"build": "rm -rf dist && tsc -p ./tsconfig.build.json",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "yarn test && yarn build",
"prepack": "yarn build",
"preversion": "yarn test"
},
"publishConfig": {
"provenance": true
},
"license": "MIT",
"peerDependencies": {
"react": ">=16.0.0",
"react-native": ">=0.66.4"
},
"dependencies": {
"@babel/core": "^7.19.0",
"@babel/helper-module-imports": "^7.18.6"
},
"devDependencies": {
"@babel/code-frame": "^7.18.6",
"@babel/preset-env": "^7.19.0",
"@babel/preset-react": "^7.18.6",
"@babel/types": "^7.19.0",
"@changesets/cli": "^2.26.1",
"@svitejs/changesets-changelog-github-compact": "^0.1.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^10.1.1",
"@types/babel__core": "^7.1.19",
"@types/prettier": "^2.7.0",
"@types/react": "^18.0.15",
"@types/react-native": "^0.69.2",
"babel-preset-expo": "^9.2.0",
"concurrently": "^7.2.2",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-native": "0.68.2",
"react-test-renderer": "^18.2.0",
"typescript": "~4.3.5",
"vitest": "^0.18.0"
}
}