-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
69 lines (69 loc) · 1.65 KB
/
package.json
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
{
"name": "nitro-codegen",
"version": "0.21.0",
"description": "The code-generator for react-native-nitro-modules.",
"main": "lib/index",
"types": "lib/index.d.ts",
"source": "src/index",
"type": "module",
"files": [
"lib",
"src",
"README.md"
],
"bin": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mrousavy/nitro.git"
},
"author": "Marc Rousavy <[email protected]> (https://github.com/mrousavy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrousavy/nitro/issues"
},
"homepage": "https://github.com/mrousavy/nitro#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"postinstall": "bun build || exit 0;",
"build": "bun tsc",
"start": "tsc && node lib/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
"lint-ci": "eslint \"**/*.{js,ts,tsx}\" -f @jamesacarr/github-actions",
"release": "release-it"
},
"dependencies": {
"chalk": "^5.3.0",
"react-native-nitro-modules": "^0.21.0",
"ts-morph": "^25.0.0",
"yargs": "^17.7.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.8.4"
},
"release-it": {
"npm": {
"publish": true
},
"git": false,
"github": {
"release": false
},
"hooks": {
"before:init": "bun typecheck && bun lint",
"after:bump": "bun run build"
},
"plugins": {
"@release-it/bumper": {
"out": {
"file": "package.json",
"path": "dependencies.react-native-nitro-modules",
"versionPrefix": "^"
}
}
}
}
}