-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.44 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.44 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
{
"name": "react-native-nitro-fetch-monorepo",
"packageManager": "bun@1.2.22",
"private": true,
"version": "0.1.4",
"description": "Awesome Fetch :)",
"author": "Szymon Kapala <szymon20000@gmail.com'> (https://x.com/Turbo_Szymon)",
"workspaces": [
"example",
"packages/react-native-nitro-fetch",
"packages/react-native-nitro-text-decoder",
"packages/react-native-nitro-websockets"
],
"repository": "https://github.com/margelo/react-native-nitro-fetch.git",
"scripts": {
"example": "bun --cwd example",
"test": "jest",
"typecheck": "bun --cwd packages/react-native-nitro-fetch tsc && bun --cwd packages/react-native-nitro-text-decoder tsc",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
"textdecoder": "bun --cwd packages/react-native-nitro-text-decoder",
"websockets": "bun --cwd packages/react-native-nitro-websockets",
"fetch": "bun --cwd packages/react-native-nitro-fetch",
"submodules": "git submodule update --init --recursive",
"prepare": "bun fetch prepare && bun textdecoder specs && bun websockets specs",
"nitrogen": "bun --cwd packages/react-native-nitro-fetch nitrogen && bun --cwd packages/react-native-nitro-text-decoder specs && bun --cwd packages/react-native-nitro-websockets specs",
"release": "release-it --only-version",
"release:fetch": "bun --cwd packages/react-native-nitro-fetch release --only-version",
"release:textdecoder": "bun --cwd packages/react-native-nitro-text-decoder release --only-version",
"release:websockets": "bun --cwd packages/react-native-nitro-websockets release --only-version",
"docs": "cd docs-website && npm start",
"docs:build": "cd docs-website && npm run build",
"docs:deploy": "cd docs-website && npm run deploy"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@evilmartians/lefthook": "^1.5.0",
"@react-native/babel-preset": "0.85.0-rc.0",
"@react-native/eslint-config": "^0.78.0",
"@release-it/conventional-changelog": "^9.0.2",
"@types/jest": "^29.5.5",
"@types/react": "^19.2.0",
"commitlint": "^19.6.1",
"del-cli": "^5.1.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"nitro-codegen": "^0.29.2",
"prettier": "^3.0.3",
"react": "19.2.3",
"react-native": "0.85.0-rc.0",
"react-native-builder-bob": "^0.40.13",
"react-native-nitro-modules": "^0.35.2",
"release-it": "^17.10.0",
"turbo": "^1.10.7",
"typescript": "^5.8.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
}
}
}
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"patchedDependencies": {
"react-native-worklets-core@1.6.2": "patches/react-native-worklets-core@1.6.2.patch",
"nitrogen@0.35.2": "patches/nitrogen@0.35.2.patch"
}
}