-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 824 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 824 Bytes
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
{
"name": "react-native-nitro-mlx-monorepo",
"source": "src/index",
"author": "Henry Paulino <me@henrypl.com> (https://github.com/corasan)",
"scripts": {
"postinstall": "tsc -p ./package --noEmit || exit 0;",
"typescript": "bun tsc -p ./package --noEmit",
"clean": "rm -rf package/tsconfig.tsbuildinfo node_modules example/node_modules example/ios package/node_modules package/lib example/.expo",
"specs": "bun --cwd ./package specs",
"specs:pod": "bun --cwd ./package specs && cd example/ios && pod install && cd ../../",
"build": "bun --cwd package build",
"release": "bun --cwd package release"
},
"workspaces": [
"package",
"example"
],
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"typescript": "^5.9.3"
},
"dependencies": {
"zod": "^4.3.5"
}
}