-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 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
{
"name": "react-native-apple-intelligence",
"version": "0.1.0",
"description": "Nitro module workspace",
"main": "./package/lib/module/index.js",
"module": "./package/lib/module/index.js",
"types": "./package/lib/typescript/src/index.d.ts",
"react-native": "./package/src/index",
"source": "./package/src/index",
"author": "Developer",
"scripts": {
"typecheck": "bun tsc -p ./package --noEmit",
"clean": "rm -rf package/tsconfig.tsbuildinfo package/node_modules package/lib",
"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",
"prebuild:ios": "bunx --cwd ./example expo prebuild -p ios",
"docs:dev": "bun --cwd docs start",
"docs:build": "bun --cwd docs build",
"docs:serve": "bun --cwd docs serve"
},
"keywords": [
"react-native",
"nitro"
],
"workspaces": [
"package",
"example",
"docs"
],
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"typescript": "^5.7.3"
}
}