-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "virtual-printer",
"version": "1.0.18",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"description": "A Node.js module that makes Virtual IPP Printer",
"author": {
"name": "Hyeonseung Kang",
"email": "[email protected]",
"url": "https://github.com/hyeonseungkang"
},
"homepage": "https://github.com/hyeonseungkang/virtual-printer",
"repository": {
"url": "https://github.com/hyeonseungkang/virtual-printer.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/hyeonseungkang/virtual-printer/issues"
},
"keywords": [
"printer",
"virtual",
"ipp",
"http",
"server"
],
"scripts": {
"dev": "nodemon --exec ts-node src/bin.ts",
"build": "tsc --build",
"prestart": "yarn install && rimraf lib/ && yarn run build",
"start": "node lib/bin.js"
},
"dependencies": {
"@homebridge/ciao": "^1.1.5",
"fastify": "^4.6.0",
"ipp": "^2.0.1",
"tiny-typed-emitter": "^2.1.0"
},
"devDependencies": {
"@types/ipp": "^2.0.2",
"@types/node": "^18.8.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}