-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.83 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@rific/auto-paper",
"version": "0.4.0",
"description": "Adaptive react-native-paper theming: triadic palette from a seed color + system/light/dark appearance",
"keywords": [
"react-native",
"expo",
"react-native-paper",
"md3",
"material-you",
"material-design",
"theming",
"dark-mode",
"seed-color",
"color-palette",
"triadic",
"adaptive-theme",
"appearance"
],
"homepage": "https://github.com/jayrdeaton/react-native-auto-paper#readme",
"bugs": {
"url": "https://github.com/jayrdeaton/react-native-auto-paper/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jayrdeaton/react-native-auto-paper.git"
},
"license": "MIT",
"author": "Jay Deaton",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"fix": "eslint --fix",
"lint": "eslint",
"prepublishOnly": "npm run build",
"release": "git push --follow-tags",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags",
"test": "jest",
"test:watch": "jest --watchAll",
"typecheck": "tsc --noEmit",
"preversion": "npm run lint && npm test && npm run build"
},
"overrides": {
"esbuild": "0.28.1"
},
"devDependencies": {
"@reduxjs/toolkit": "^2.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.0.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.0.0",
"@types/react-native": "^0.73.0",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-package-json": "^1.0.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"expo-blur": "^56.0.3",
"expo-navigation-bar": "^56.0.3",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"prettier": "^3.8.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-native": "^0.76.0",
"react-native-paper": "^5.12.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.59.3"
},
"peerDependencies": {
"expo-blur": ">=14.0.0",
"react": ">=18.0.0",
"react-native": ">=0.73.0",
"react-native-paper": ">=5.0.0"
},
"optionalDependencies": {
"@reduxjs/toolkit": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}