-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.7 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
{
"name": "gps-tracking",
"version": "2.0.0-beta.1",
"description": "TCP server for GPS trackers (TK103, GT06, GK309, SinoTrack ST-901/H02, GT02A, TK510). TypeScript, zero dependencies.",
"type": "module",
"engines": {
"node": ">=18.17"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"MIGRATION.md"
],
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"prepublishOnly": "npm run typecheck && npm run lint && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freshworkstudio/gps-tracking-nodejs.git"
},
"keywords": [
"gps",
"tracker",
"tk103",
"gt06",
"gk309",
"sinotrack",
"st-901",
"h02",
"gt02a",
"tk510",
"tcp",
"gps-server",
"tracking"
],
"author": "Gonzalo De-Spirito (https://www.freshworkstudio.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/freshworkstudio/gps-tracking-nodejs/issues"
},
"homepage": "https://github.com/freshworkstudio/gps-tracking-nodejs",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^18.19.0",
"eslint": "^10.7.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.63.0",
"vitest": "^3.0.0"
}
}