-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.81 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.81 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
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
91
92
93
94
95
96
97
{
"name": "health-data-to-lynx",
"version": "0.3.0",
"type": "module",
"description": "Lynx health SDK with Apple HealthKit, Health Connect, Huawei Health, and Xiaomi adapters plus typed health snapshots.",
"keywords": [
"lynx",
"healthkit",
"health-connect",
"android-health",
"huawei-health",
"huawei-health-kit",
"xiaomi-health",
"ios",
"android",
"apple-health",
"health-data",
"health-sdk",
"bridge"
],
"homepage": "https://github.com/PrimoPan/HealthDatatoLynx#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/PrimoPan/HealthDatatoLynx.git"
},
"bugs": {
"url": "https://github.com/PrimoPan/HealthDatatoLynx/issues"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"main": "./pkg/lib/index.js",
"module": "./pkg/lib/index.js",
"types": "./pkg/lib/index.d.ts",
"exports": {
".": {
"types": "./pkg/lib/index.d.ts",
"import": "./pkg/lib/index.js"
},
"./ios/HealthKitBridge/HealthKitManager.swift": "./ios/HealthKitBridge/HealthKitManager.swift",
"./ios/HealthKitBridge/README.md": "./ios/HealthKitBridge/README.md",
"./package.json": "./package.json"
},
"files": [
"pkg",
"ios/HealthKitBridge",
"docs",
"src/assets/lynx-logo.png",
"CHANGELOG.md",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:web",
"build:web": "rspeedy build",
"build:npm": "tsc -p tsconfig.publish.json",
"clean:npm": "rm -rf pkg",
"dev": "rspeedy dev",
"format": "prettier --write .",
"lint": "eslint .",
"preview": "rspeedy preview",
"pack:check": "npm pack --dry-run",
"prepublishOnly": "npm run clean:npm && npm run build:npm && npm run lint && npm run pack:check",
"release:patch": "npm version patch -m \"chore(release): %s\"",
"release:minor": "npm version minor -m \"chore(release): %s\"",
"release:major": "npm version major -m \"chore(release): %s\"",
"publish:public": "npm publish --access public --registry https://registry.npmjs.org/"
},
"dependencies": {
"@lynx-js/react": "^0.116.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@lynx-js/preact-devtools": "^5.0.1",
"@lynx-js/qrcode-rsbuild-plugin": "^0.4.5",
"@lynx-js/react-rsbuild-plugin": "^0.12.8",
"@lynx-js/rspeedy": "^0.13.4",
"@lynx-js/types": "3.7.0",
"@rsbuild/plugin-type-check": "1.3.3",
"@types/react": "^18.3.28",
"ajv": "^8.18.0",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.55.0"
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}