-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.09 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
{
"name": "@deep-foundation/capacitor-geolocation",
"keywords": [
"deep-package"
],
"version": "8.0.0-dev.23",
"description": "A deep package that provides links based on @capacitor/geolocation and typescript library to simplify integration with this deep package",
"repository": {
"type": "git",
"url": "https://github.com/deep-foundation/capacitor-geolocation"
},
"type": "module",
"scripts": {
"library:build:clean": "fse remove dist && npm run library:build:dirty",
"library:build:dirty": "npx tsx ./automation/library/build.js",
"npm-pull": "npm-pull",
"npm-release": "npm-release",
"library:build:generate-package-class": "generate-package-class",
"documentation:generate": "npx tsx ./automation/documentation/generate.js",
"library:documentation:generate": "typedoc ./src/main.ts",
"prettier:check": "prettier . --check --ignore-unknown",
"prettier:write": "prettier . --write --ignore-unknown",
"prepare": "husky install",
"lint:fix": "eslint . --fix"
},
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"/dist",
"./deep.json"
],
"dependencies": {
"@deep-foundation/core": "~0.0.2",
"@deep-foundation/object-to-links-async-converter": "~0.0.1-dev.4",
"@deep-foundation/tsx": "~0.0.5",
"@freephoenix888/deepclient-extensions": "~1.0.0-dev.0",
"@freephoenix888/object-to-links-async-converter": "~0.0.10",
"debug": "~4.3.4",
"mitt": "~3.0.1"
},
"devDependencies": {
"@atao60/fse-cli": "~0.1.7",
"@deep-foundation/npm-automation": "~18.1.11",
"@types/debug": "~4.1.8",
"@types/fs-extra": "~11.0.1",
"@types/node": "~20.4.2",
"fs-extra": "~11.1.1",
"husky": "~8.0.3",
"lint-staged": "~14.0.1",
"prettier": "3.0.3",
"tsx": "~4.7.0",
"typescript": "~5.2.2"
},
"peerDependencies": {
"@capacitor/app": "~5.0.6",
"@capacitor/device": "~5.0.6",
"@capacitor/geolocation": "~5.0.6",
"@chakra-ui/react": "*",
"@deep-foundation/deeplinks": "*",
"react": "*"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}