-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
89 lines (89 loc) · 3.24 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
{
"version": "1.0.0",
"description": "Connect to and interact with Bluetooth LE peripherals",
"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'",
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'demo-*/hooks' 'demo-*/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
"commitmsg": "commitlint -e $GIT_PARAMS",
"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",
"tsc": "cpy '**/*.d.ts' '../plugin' --parents --cwd=src && tsc -skipLibCheck -d",
"update": "node ./tools/update.js",
"doc": "node tools/builddoc.mjs",
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\" ; echo \"commit readme doc done\""
},
"repository": {
"type": "git",
"url": "https://github.com/nativescript-community/ble.git"
},
"keywords": [
"ecosystem:NativeScript",
"NativeScript",
"BLE",
"Bluetooth",
"Bluetooth LE",
"Bluetooth Smart",
"Bluetooth Low Energy"
],
"author": {
"name": "Martin Guillon",
"email": "[email protected]"
},
"contributors": [
{
"name": "BEddy Verbruggen",
"email": "[email protected]",
"url": "https://github.com/EddyVerbruggen"
},
{
"name": "Brad Martin",
"email": "[email protected]",
"url": "https://github.com/bradmartin"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nativescript-community/ble/issues"
},
"homepage": "https://github.com/nativescript-community/ble",
"dependencies": {
"@nativescript-community/arraybuffers": "^1.1.5",
"@nativescript-community/observable": "^2.0.11",
"@nativescript-community/perms": "^2.3.0",
"@nativescript-community/plugin-seed-tools": "file:tools",
"make-error": "1.3.6",
"p-queue": "~7.3.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"ntl": {
"descriptions": {
"build": "Build the plugin",
"build.all": "Build the plugin for all platforms",
"clean": "Clean the local environment.",
"watch": "Watch for changes in the plugin source and re-build."
}
},
"workspaces": [
"packages/*",
"demo*"
],
"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"
}
}