-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.88 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.88 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
{
"name": "@nativescript/ios",
"description": "NativeScript Runtime for iOS",
"version": "9.0.0-napi-v8.0",
"keywords": [
"NativeScript",
"iOS",
"runtime"
],
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/ios"
},
"author": {
"name": "NativeScript Team",
"email": "oss@nativescript.org"
},
"workspaces": [
"packages/*",
"examples",
"scripts"
],
"scripts": {
"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",
"build-libffi": "node scripts/build_libffi.js",
"build-metagen": "./build_metadata_generator.sh",
"metagen": "node scripts/metagen.js",
"build": "./build_nativescript.sh",
"build:ios": "./build_nativescript.sh --iphone --no-simulator",
"build:ios-sim": "./build_nativescript.sh --no-iphone --simulator",
"build:macos": "./build_nativescript.sh --macos --no-iphone --no-simulator",
"build:macos-cli": "./build_nativescript.sh --no-iphone --no-simulator --macos-cli",
"build:macos-napi": "./build_nativescript.sh --no-iphone --no-simulator --macos-napi",
"nsr": "./dist/nsr"
},
"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"
]
}
}