-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "@barelyhuman/preact-native",
"version": "0.1.1-beta.11",
"description": "",
"bugs": "https://github.com/barelyhuman/preact-native/issues",
"repository": "barelyhuman/preact-native",
"license": "MIT",
"author": "barelyhuman <[email protected]>",
"exports": {
"./*": "./src/*",
"./package.json": "./package.json"
},
"main": "./src/index.js",
"module": "./src/index.js",
"types": "./types/index.d.ts",
"engines": {
"node": "^12 || ^14 || >=16"
},
"files": [
"src",
"types"
],
"scripts": {
"nuke": "find . -name 'node_modules' -type d -prune | xargs rm -rf",
"prepare": "tsc; husky install",
"example:start": "cd example;yarn start",
"example:ios": "cd example; yarn ios",
"example:android": "cd example; yarn android",
"fix": "npx prettier --write .",
"next": "bumpp --tag --commit",
"preversion": "tsc"
},
"lint-staged": {
"*.{js,mjs,ts,tsx,json,md}": [
"prettier --write"
]
},
"prettier": "@barelyhuman/prettier-config",
"devDependencies": {
"@barelyhuman/prettier-config": "^1.1.0",
"bumpp": "^8.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"preact": "^10.11.0",
"prettier": "^2.7.1",
"react-native": "^0.70.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"preact": ">10",
"react": ">=17",
"react-native": ">=0.65"
},
"publishConfig": {
"access": "public"
}
}