forked from llrpjs/llrpjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.09 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.09 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
{
"name": "llrpjs",
"version": "1.1.1",
"description": "A Low Level Reader Protocol (LLRP) library for node",
"main": "./dist/src/index.js",
"typings": "./src/index.ts",
"directories": {
"test": "./dist/test"
},
"bin": {
"llrp2json": "./dist/bin/llrp2json.js",
"json2llrp": "./dist/bin/json2llrp.js"
},
"devDependencies": {
"@types/json-bigint": "^1.0.0",
"@types/node": "^14.14.37",
"@types/yargs": "^16.0.1",
"typescript": "^5.2.2"
},
"scripts": {
"build": "npx tsc --build tsconfig.json",
"prepare": "npm run-script build",
"start": "npm run-script build && node ./dist/examples/example2.js"
},
"repository": {
"type": "git",
"url": "git@github.com:llrpjs/llrpjs.git"
},
"bugs": {
"url": "https://github.com/llrpjs/llrpjs/issues"
},
"keywords": [
"llrpts",
"llrpjs",
"llrp",
"rfid",
"uhf",
"epcglobal",
"gs1",
"ltk",
"llrp-toolkit"
],
"author": "Haytham Halimeh <haytham.halimeh@gmail.com>",
"license": "MIT",
"dependencies": {
"json-bigint": "^1.0.0",
"yargs": "^16.2.0"
}
}