-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.02 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
{
"name": "fitdays-api",
"version": "1.0.3",
"description": "Unofficial TypeScript SDK for the FitDays API - login, sync, and full response typings.",
"keywords": [
"fitdays",
"icomon",
"smart-scale",
"body-composition",
"weight",
"bluetooth-scale",
"sdk",
"api-client",
"typescript"
],
"license": "MIT",
"author": "Rodrigo Roque <rodrigogoncalvesroque@gmail.com>",
"homepage": "https://github.com/roquerodrigo/fitdays-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/roquerodrigo/fitdays-api.git"
},
"bugs": {
"url": "https://github.com/roquerodrigo/fitdays-api/issues"
},
"type": "module",
"main": "dist/fitdays-api.js",
"types": "dist/fitdays-api.d.ts",
"exports": {
".": {
"types": "./dist/fitdays-api.d.ts",
"import": "./dist/fitdays-api.js"
}
},
"sideEffects": false,
"files": [
"dist",
"!dist/scripts",
"!dist/tests",
"!dist/**/*.test.*"
],
"scripts": {
"build": "tsc",
"build:publish": "rm -rf dist && tsc -p tsconfig.build.json",
"lint": "eslint --fix",
"test": "tsc && node --test --experimental-test-coverage --test-coverage-include='dist/client/**' --test-coverage-include='dist/utils/**' --test-coverage-include='dist/errors/**' --test-coverage-include='dist/constants/**' --test-coverage-lines=90 --test-coverage-functions=90 --test-coverage-branches=80 dist/tests/*.test.js",
"test:sync": "tsc && node dist/scripts/test-sync.js",
"verify-sign": "tsc && node dist/scripts/verify-sign.js",
"prepack": "npm run build:publish",
"prepublishOnly": "npm run lint && npm test"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@types/node": "26.1.1",
"eslint": "10.8.0",
"eslint-plugin-perfectionist": "5.10.0",
"globals": "17.8.0",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
}
}