-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "node-tile",
"version": "1.2.0",
"description": "Package to ring & talk to your Tile Tracker",
"type": "module",
"author": "Lesley De Keyser",
"license": "ISC",
"scripts": {
"compile": "tsc",
"clean": "shx rm -rf ./lib",
"start": "npm run compile && node dist/index.js",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"prepack": "npm run build"
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*"
],
"keywords": [
"Tile",
"Tracker",
"Device",
"Bluetooth"
],
"repository": {
"type": "git",
"url": "https://github.com/lesleyxyz/node-tile.git"
},
"dependencies": {
"@abandonware/noble": "^1.9.2-21",
"noble-winrt": "^0.1.1",
"node-ble": "^1.9.0",
"node-fetch": "^2.6.7",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/node": "^18.11.13",
"shx": "^0.3.4"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
}
}