-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "@nativescript/ios",
"description": "NativeScript Runtime for iOS",
"version": "8.8.2",
"keywords": [
"NativeScript",
"iOS",
"runtime"
],
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/ios"
},
"author": {
"name": "NativeScript Team",
"email": "[email protected]"
},
"directories": {},
"files": [
"**/*"
],
"scripts": {
"prepare": "husky",
"apply-patches": "./apply_patches.sh",
"build-v8-source": "./build_v8_source.sh",
"build-v8-source-catalyst": "./build_v8_source_catalyst.sh",
"build-ios": "node prepare-target ios && ./build_all_ios.sh",
"build-vision": "node prepare-target visionos && ./build_all_vision.sh",
"setup-ci": "./build_metadata_generator.sh",
"update-version": "./update_version.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "npm run changelog && git add CHANGELOG.md"
},
"license": "Apache-2.0",
"devDependencies": {
"conventional-changelog-cli": "^2.1.1",
"dayjs": "^1.11.7",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"semver": "^7.5.0"
},
"lint-staged": {
"{NativeScript,metadata-generator/src,TestFixtures}/**/*.{h,hpp,c,cpp,mm,m}": [
"clang-format -i"
]
}
}