-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.87 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.87 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
{
"name": "@nativescript/core",
"version": "9.0.18-next.6",
"description": "A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.",
"type": "module",
"main": "index",
"types": "index.d.ts",
"module": "./index.js",
"sideEffects": [
"bundle-entry-points.js",
"./globals/index.js",
"./globals"
],
"files": [
"**/*.d.ts",
"**/*.js",
"**/*.mjs",
"**/*.cjs",
"**/*.map",
"**/platforms/ios/**",
"platforms/android/**",
"!platforms/android/core.aar",
"**/package.json"
],
"keywords": [
"NativeScript",
"JavaScript",
"Android",
"iOS",
"TypeScript"
],
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/NativeScript"
},
{
"type": "github",
"url": "https://github.com/sponsors/NativeScript"
}
],
"homepage": "https://nativescript.org",
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/NativeScript"
},
"author": {
"name": "NativeScript",
"email": "oss@nativescript.org"
},
"bugs": {
"url": "https://github.com/NativeScript/NativeScript/issues"
},
"license": "Apache-2.0",
"scripts": {
"postinstall": "node cli-hooks/postinstall.mjs",
"preuninstall": "node cli-hooks/preuninstall.mjs"
},
"dependencies": {
"@csstools/css-calc": "~2.1.4",
"@csstools/css-color-parser": "^3.0.10",
"@csstools/css-parser-algorithms": "^3.0.5",
"@csstools/css-tokenizer": "^3.0.4",
"@nativescript/hook": "~3.0.4",
"acorn": "^8.15.0",
"css-tree": "^3.1.0",
"css-what": "^7.0.0",
"emoji-regex": "^10.2.1",
"source-map": "0.7.6",
"source-map-js": "^1.2.1",
"tslib": "^2.0.0"
},
"nativescript": {
"platforms": {
"ios": "6.0.0",
"android": "6.0.0"
},
"hooks": [
{
"name": "nativescript-core",
"type": "before-checkForChanges",
"script": "cli-hooks/before-checkForChanges.mjs",
"inject": true
}
]
}
}