-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.74 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "create-nitro-module",
"version": "3.6.0",
"description": "A CLI tool that simplifies creating React Native modules powered by Nitro Modules.",
"private": false,
"type": "module",
"scripts": {
"dev": "bun typecheck && bun src/cli/index.ts",
"build": "rm -rf lib && bun typecheck && tsup src",
"typecheck": "tsc --noEmit",
"prerelease": "rm -rf ./lib/assets",
"release": "bun run build && bun semantic-release",
"lint": "eslint --fix ",
"format": "prettier --write ",
"commitlint": "commitlint --edit",
"ios:e2e": "bash scripts/e2e-maestro.sh ios",
"android:e2e": "bash scripts/e2e-maestro.sh android"
},
"files": [
"lib",
"assets",
"!assets/nitro-module-cli.gif",
"README.md"
],
"keywords": [
"react native",
"nitro",
"nitro create",
"nitro-cli",
"nitro modules",
"create-nitro-modules",
"Native Modules",
"Create React Native Modules with Nitro",
"Create Nitro Modules",
"create react native module",
"create react native module",
"create react native library",
"react native library"
],
"license": "MIT",
"bin": {
"create-nitro-module": "lib/cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickkabwe/create-nitro-module.git"
},
"author": "Patrick Kabwe (https://github.com/patrickkabwe)",
"bugs": {
"url": "https://github.com/patrickkabwe/create-nitro-module/issues"
},
"homepage": "https://patrickkabwe.github.io/create-nitro-module/",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"commander": "^14.0.0",
"kleur": "^4.1.5",
"tsup": "^8.3.5"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 4,
"arrowParens": "avoid"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.0.2",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.39.0",
"eslint-plugin-n": "^17.23.1",
"lefthook": "^2.0.2",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.14.0"
}
}