-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2 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
{
"name": "@openhps/capacitor",
"version": "1.0.0",
"description": "Open Hybrid Positioning System - Capacitor",
"author": "Maxim Van de Wynckel",
"license": "Apache-2.0",
"repository": "https://github.com/OpenHPS/openhps-capacitor.git",
"bugs": {
"url": "https://github.com/OpenHPS/openhps-capacitor/issues"
},
"homepage": "https://openhps.org",
"private": true,
"workspaces": [
"./modules/*"
],
"scripts": {
"build:typedoc": "typedoc --options docs/typedoc.json",
"clean": "shx rm -rf docs/out && shx rm -rf modules/*/dist && shx rm -rf modules/*/docs/out",
"lint": "eslint modules/*/src/**",
"bump:development": "standard-version --prerelease alpha -m 'chore(alpha): %s' --skip.changelog",
"bump:release": "standard-version -m 'chore(release): %s' --skip.changelog",
"update": "ncu -u && ncu -u -ws"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@openhps/core": ">=1.0.16",
"@types/chai": "^5.2.2",
"@types/cordova": "11.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"chai": "^6",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^54.1.1",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.3.0",
"mocha": "^11.7.1",
"mocha-junit-reporter": "^2.2.1",
"npm-check-updates": "^18.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^17.1.0",
"prettier": "^3.6.2",
"reflect-metadata": "^0.2.2",
"shx": "^0.4.0",
"standard-version": "^9.5.0",
"ts-node": ">=10.9.2",
"typedoc": "^0.28.11",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1"
}
}