-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·90 lines (90 loc) · 4.45 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
86
87
88
89
90
{
"name": "@nativescript-community/ui-webview-root",
"version": "1.0.0",
"homepage": "https://github.com/nativescript-community/ui-webview#readme",
"bugs": {
"url": "https://github.com/nativescript-community/ui-webview/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nativescript-community/ui-webview.git"
},
"license": "ISC",
"author": "",
"scripts": {
"build": "lerna run build",
"build.all": "lerna run build.all",
"build.all.win": "lerna run build.all.win",
"build.angular": "lerna run build.angular",
"build.angular.win": "lerna run build.angular.win",
"build.win": "lerna run build.win",
"clean": "rimraf 'packages/**/*.d.ts' 'packages/**/*.js' 'packages/**/*.js.map' 'packages/**/*.metada' 'packages/**/angular/ng-package.json'",
"clean.win": "rimraf packages\\**\\*.d.ts packages\\**\\*.js packages\\**\\*.js.map packages\\**\\*.metadata.json packages\\**\\*.ngsummary.json node_modules package-lock.json",
"commitmsg": "commitlint -e $GIT_PARAMS",
"demo.ng.android": "cd ./demo-ng && ns run android --no-hmr --env.watchNodeModules",
"demo.ng.clean": "cd ./demo-ng && ns clean",
"demo.ng.ios": "cd ./demo-ng && ns run ios --no-hmr --env.watchNodeModules",
"demo.react.android": "cd ./demo-react && ns run android --no-hmr --env.watchNodeModules",
"demo.react.clean": "cd ./demo-react && ns clean",
"demo.react.ios": "cd ./demo-react && ns run ios --no-hmr --env.watchNodeModules",
"demo.svelte.android": "cd ./demo-svelte && ns run android --no-hmr --env.watchNodeModules",
"demo.svelte.clean": "cd ./demo-svelte && ns clean",
"demo.svelte.ios": "cd ./demo-svelte && ns run ios --no-hmr --env.watchNodeModules",
"demo.vue.android": "cd ./demo-vue && ns run android --no-hmr --env.watchNodeModules",
"demo.vue.clean": "cd ./demo-vue && ns clean",
"demo.vue.ios": "cd ./demo-vue && ns run ios --no-hmr --env.watchNodeModules",
"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",
"watch": "npm run tsc -- -w",
"doc": "node tools/builddoc.mjs",
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'demo-*/hooks' 'demo-*/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\" ; echo \"commit readme doc done\""
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@nativescript-community/plugin-seed-tools": "file:tools",
"@nativescript-community/template-snippet": "file:demo-snippets"
},
"devDependencies": {
"ts-node": "10.9.1"
},
"ntl": {
"descriptions": {
"build": "Build the plugin",
"build.angular": "Build the plugin for Angular",
"build.all": "Build the plugin for all platforms",
"clean": "Clean the local environment.",
"demo.ng.android": "Runs the Angular demo on Android.",
"demo.ng.ios": "Runs the Angular demo on iOS.",
"demo.react.android": "Runs the React demo on Android.",
"demo.react.ios": "Runs the React demo on iOS.",
"demo.svelte.android": "Runs the Svelte demo on Android.",
"demo.svelte.ios": "Runs the Svelte demo on iOS.",
"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"
},
"workspaces": [
"packages/*",
"demo*"
]
}