1 | {
|
2 | "name": "nativescript-vue-router-extended",
|
3 | "version": "1.0.7",
|
4 | "description": "NativeScript Vue Router Extended for NativeScript Vue hybrid Apps.",
|
5 | "main": "vue-router",
|
6 | "nativescript": {
|
7 | "platforms": {
|
8 | "android": "7.1.0",
|
9 | "ios": "7.1.0"
|
10 | }
|
11 | },
|
12 | "repository": {
|
13 | "type": "git",
|
14 | "url": "https://github.com/MattCCC/nativescript-vue-router-extended.git"
|
15 | },
|
16 | "scripts": {
|
17 | "tsc": "ts-patch install && ts-patch check && tsc -skipLibCheck",
|
18 | "build": "npm i && npm run tsc && npm run build.native",
|
19 | "pack": "cd ../publish; chmod +rx pack.sh; ./pack.sh",
|
20 | "pckgpublish": "cd ../publish; chmod +rx publish.sh; ./publish.sh",
|
21 | "release": "npm version patch && git push --tags",
|
22 | "build.native": "node scripts/build-native.js",
|
23 | "tslint": "cd .. && tslint \"**/*.ts\" --config tslint.json --exclude \"**/node_modules/**\"",
|
24 | "ci.tslint": "npm i && ts-patch install && tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**' --exclude '**/platforms/**'",
|
25 | "prepack": "npm run build.native",
|
26 | "demo.ios": "npm i && ts-patch install && cd ../demo && ns run ios --no-hmr",
|
27 | "demo.android": "npm i && ts-patch install && cd ../demo && ns run android",
|
28 | "demo.reset": "cd ../demo && npx rimraf -- hooks node_modules platforms package-lock.json",
|
29 | "plugin.prepare": "npm run build && cd ../demo && ns plugin remove nativescript-vue-router-extended && ns plugin add ../src",
|
30 | "clean": "npm run demo.reset && npx rimraf -- node_modules package-lock.json && npm i && ts-patch install"
|
31 | },
|
32 | "keywords": [
|
33 | "Vue",
|
34 | "Router",
|
35 | "NativeScript",
|
36 | "Extended",
|
37 | "JavaScript",
|
38 | "Android",
|
39 | "iOS"
|
40 | ],
|
41 | "author": {
|
42 | "name": "Matt Czaplinski",
|
43 | "email": "deindesign.pl@gmail.com"
|
44 | },
|
45 | "bugs": {
|
46 | "url": "https://github.com/MattCCC/nativescript-vue-router-extended/issues"
|
47 | },
|
48 | "license": "Apache-2.0",
|
49 | "homepage": "https://github.com/MattCCC/nativescript-vue-router-extended",
|
50 | "devDependencies": {
|
51 | "@nativescript/core": "^7.1.0",
|
52 | "@nativescript/types": "^7.1.0",
|
53 | "@nativescript/webpack": "^4.0.0",
|
54 | "@typescript-eslint/eslint-plugin": "^4.12.0",
|
55 | "@typescript-eslint/eslint-plugin-tslint": "^4.12.0",
|
56 | "@typescript-eslint/parser": "^4.12.0",
|
57 | "eslint": "^7.17.0",
|
58 | "prompt": "^1.0.0",
|
59 | "rimraf": "^2.6.3",
|
60 | "semver": "^5.6.0",
|
61 | "ts-patch": "^1.3.1",
|
62 | "tslint": "^5.12.1",
|
63 | "typescript": "4.1.3"
|
64 | },
|
65 | "bootstrapper": "nativescript-plugin-seed",
|
66 | "dependencies": {
|
67 | "@types/node": "14.14.22",
|
68 | "nativescript-vue": "^2.9.0",
|
69 | "ts-node": "^9.1.1",
|
70 | "vue-router": "^4.0.11"
|
71 | },
|
72 | "engines": {
|
73 | "node": ">=12"
|
74 | }
|
75 | }
|