-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.74 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
{
"name": "@react-native-ai/monorepo",
"private": true,
"scripts": {
"typecheck": "bun run --filter='*' typecheck",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"release": "release-it",
"build": "bun run --filter='@react-native-ai/*' prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/callstackincubator/ai.git"
},
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-strict-mode": "^7.27.1",
"@commitlint/config-conventional": "^20.2.0",
"@react-native/babel-preset": "^0.81.4",
"@react-native/typescript-config": "^0.81.4",
"@release-it-plugins/workspaces": "^5.0.3",
"@release-it/conventional-changelog": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"commitlint": "^20.2.0",
"del-cli": "^7.0.0",
"eslint": "^9.31.0",
"eslint-config-expo": "^9.2.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.7.4",
"react-native-builder-bob": "^0.40.17",
"release-it": "^19.1.0",
"typescript": "^5.8.3"
},
"workspaces": [
"packages/*",
"apps/*"
],
"packageManager": "bun@1.2.19",
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": false,
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
},
"@release-it-plugins/workspaces": {
"workspaces": [
"packages/*"
]
}
}
},
"version": "0.12.0",
"dependencies": {
"ajv": "^8.17.1"
}
}