-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 843 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 843 Bytes
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
{
"name": "@rescript-react-native/template",
"description": "React Native template for applications developed with ReScript.",
"version": "0.84.0",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/rescript-react-native/template",
"license": "MIT",
"keywords": [
"rescript",
"react-native",
"react-native-template"
],
"files": [
"template/*",
"template.config.js",
"script.js"
],
"devDependencies": {
"npmpub": "^6.1.0",
"prettier": "^3.6.2"
},
"scripts": {
"format": "prettier --write \"**/*.{md,json,js,css}\"",
"test": "npm install --prefix template && npm run res:build --prefix template && npm test --prefix template",
"release": "npmpub"
},
"prettier": {
"trailingComma": "all"
},
"engines": {
"node": ">=22.11.0"
}
}