-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
53 lines (47 loc) · 1.1 KB
/
deno.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
{
"app": {
"name": "NativeScript for macOS",
"identifier": "com.nativescript.AppKit",
"entryPoint": "examples/split_view.js",
"assets": "./assets",
"icon": "./assets/NativeScript.icns",
"version": "0.1.0"
},
"tasks": {
"build-libffi": "deno run -A scripts/build_libffi.ts",
"build": "deno run -A scripts/build.ts",
"bundle": "deno run -A scripts/bundler.ts",
"open-bundle": "open \"NativeScript for macOS.app\"",
"metagen": "deno run -A scripts/metagen.ts",
"build-metagen": "cd metadata && deno task build"
},
"fmt": {
"exclude": [
"build",
"libffi",
"node_modules",
"metadata",
".vscode",
"segappend",
"types",
"runtime/build",
"core-test"
]
},
"lint": {
"exclude": [
"build",
"libffi",
"node_modules",
"metadata",
".vscode",
"segappend",
"types"
]
},
"imports": {
"@nativescript/macos-node-api": "./packages/macos/mod.ts",
"@nativescript/objc-node-api": "./packages/objc/index.d.ts",
"popmotion": "npm:popmotion@^11.0.5"
}
}