-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 988 Bytes
/
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
{
"name": "find-td-devices",
"version": "1.0.0",
"description": "Helps to find the IP address of the TD device",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"exe": "rm -f \"Tongdy Device Finder.exe\" && npm run build && pkg -t node12 dist/index.js -o \"Tongdy Device Finder\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tongdysoft/find-td-devices.git"
},
"author": "Tongdy Sensing Technology Corporation",
"bugs": {
"url": "https://github.com/tongdysoft/find-td-devices/issues"
},
"homepage": "https://github.com/tongdysoft/find-td-devices#readme",
"devDependencies": {
"@types/node": "^16.4.13",
"pkg": "^5.8.0",
"typescript": "^4.7.4"
},
"pkg": {
"bin": "./bin",
"scripts": {
"pkg": "pkg . --out-path=dist/"
}
}
}