-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 4.02 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
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
{
"version": "1.0.0",
"scripts": {
"build": "lerna run build",
"build.watch": "lerna run build.watch",
"build.all": "npm run build",
"build.all.win": "lerna run build.all.win",
"clean": "rimraf 'packages/**/*.d.ts' 'packages/**/*.js' 'packages/**/*.js.map' 'packages/**/*.metada' 'packages/**/angular/ng-package.json'",
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\" ; echo \"commit readme doc done\"",
"commitmsg": "commitlint -e $GIT_PARAMS",
"demo.ng.android.dev": "cd ./demo-ng && ns run android --no-hmr --env.development",
"demo.ng.ios.dev": "cd ./demo-ng && ns run ios --no-hmr --env.development",
"demo.react.android.dev": "npm run build && cd ./demo-react && ns run android --no-hmr --env.development",
"demo.react.ios.dev": "npm run build && cd ./demo-react && ns run ios --no-hmr --env.development",
"demo.setup": "node ./tools/setup-demos.js",
"demo.svelte.android.dev": "npm run build && cd ./demo-svelte && ns run android --no-hmr --env.development",
"demo.svelte.ios.dev": "npm run build && cd ./demo-svelte && ns run ios --no-hmr --env.development",
"demo.vue.android": "cd ./demo-vue && ns run android --no-hmr --env.watchNodeModules",
"demo.vue.android.dev": "npm run build && cd ./demo-vue && ns run android --no-hmr --env.development",
"demo.vue.clean": "cd ./demo-vue && ns clean",
"demo.vue.ios": "cd ./demo-vue && ns run ios --no-hmr --env.watchNodeModules",
"demo.vue.ios.dev": "npm run build && cd ./demo-vue && ns run ios --no-hmr --env.development",
"doc": "node tools/builddoc.js",
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'demo-*/hooks' 'demo-*/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
"postinstall": "npm run setup",
"publish": "npm run setup && npm run clean && npm run build.all && npm run readme && npm run doc && npm run commit_readme_doc_changes && lerna publish",
"readme": "lerna run readme && node ./tools/readme.js",
"setup": "npm run submodules && ts-patch install",
"start": "./node_modules/.bin/ntl -A -s 15 -o",
"submodules": "git submodule update --init",
"sync": "node ./tools/sync.js",
"sync.test": "node ./tools/sync.js",
"tsc": "cpy '**/*.d.ts' '../plugin' --parents --cwd=src && tsc -skipLibCheck -d",
"update": "node ./tools/update.js"
},
"dependencies": {
"@nativescript-community/arraybuffers": "^1.1.5",
"@nativescript-community/plugin-seed-tools": "file:tools",
"@sentry/browser": "7.111.0",
"@sentry/core": "7.111.0",
"@sentry/hub": "7.111.0",
"@sentry/integrations": "7.111.0",
"@sentry/tracing": "7.111.0",
"@sentry/types": "7.111.0",
"@sentry/utils": "8.0.0-beta.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nativescript-community/sentry.git"
},
"author": {
"name": "Martin Guillon",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/nativescript-community/sentry/issues"
},
"homepage": "https://github.com/nativescript-community/sentry#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"workspaces": [
"packages/*",
"demo*"
],
"ntl": {
"descriptions": {
"build": "Build the plugin",
"build.all": "Build the plugin for all platforms",
"clean": "Clean the local environment.",
"demo.vue.android": "Runs the Vue demo on Android.",
"demo.vue.ios": "Runs the Vue demo on iOS.",
"watch": "Watch for changes in the plugin source and re-build."
}
},
"engines": {
"npm": "please use yarn or pnpm",
"yarn": ">=1.19.1",
"pnpm": ">=7.0.0",
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
}
}