-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.92 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.92 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
98
99
100
101
102
103
104
105
106
{
"version": "0.3.0",
"type": "module",
"source": "packages/react-native-libprisma/src",
"workspaces": [
"packages/react-native-libprisma",
"example"
],
"description": "High-performance syntax highlighting for React Native powered by C++ and Nitro Modules.",
"scripts": {
"bootstrap": "bun install && bun pods",
"clean": "bun --filter='*' clean",
"clean:deep": "bun --filter='*' clean:deep && del-cli node_modules",
"pods": "bun --filter='react-native-libprisma-example' pods",
"start": "bun --cwd example start",
"tsc": "bun --filter='*' typescript",
"lint": "bun --filter='*' lint",
"lint:fix": "bun --filter='*' lint:fix",
"format": "bun --filter='*' format",
"format:fix": "bun --filter='*' format:fix",
"test": "bun --filter='*' test",
"release": "release-it",
"prepare": "husky && bun --filter='react-native-libprisma' prepare"
},
"packageManager": "bun@1.2.0",
"devDependencies": {
"@eslint/compat": "^1.0.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.0.0",
"@release-it/bumper": "^7.0.0",
"@release-it/conventional-changelog": "^10.0.2",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-native": "^4.1.0",
"husky": "^9.0.11",
"lint-staged": "^16.2.7",
"nitro-codegen": "^0.29.4",
"prettier": "^3.2.5",
"release-it": "^17.1.1",
"turbo": "^2.6.3",
"typescript": "^5.4.2",
"typescript-eslint": "^7.0.0"
},
"release-it": {
"npm": {
"publish": false
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"hooks": {
"before:release": "bun bundle-install && bun pods && git add example/ios/Podfile.lock"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "✨ Features"
},
{
"type": "perf",
"section": "💨 Performance Improvements"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "chore(deps)",
"section": "🛠️ Dependency Upgrades"
},
{
"type": "docs",
"section": "📚 Documentation"
}
]
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"bun lint:fix",
"bun format:fix"
]
}
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"bun lint:fix",
"bun format:fix"
]
}
}