-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 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
{
"helpful-urls": [
"https://medium.com/cameron-nokes/the-30-second-guide-to-publishing-a-typescript-package-to-npm-89d93ff7bccd"
],
"name": "@utopian/visca",
"version": "0.0.15",
"description": "Advanced nodejs library for working with VISCA-based PTZ cameras over IP and over serial connections.",
"main": "dist/visca.js",
"types": "dist/visca.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"preversion": "echo ordinarily we would execute this... npm test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"publish-version": "npm version patch && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utopiantools/node-visca.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"visca",
"sony",
"ptz",
"camera",
"javascript",
"nodejs"
],
"author": "Jeff Mikels",
"license": "ISC",
"dependencies": {
"node-hid": "^2.1.1",
"serialport": "^9.0.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/node": "^14.14.20",
"@types/serialport": "^8.0.1",
"@types/uuid": "^8.3.0",
"typescript": "^4.1.3"
},
"bugs": {
"url": "https://github.com/utopiantools/node-visca/issues"
},
"homepage": "https://github.com/utopiantools/node-visca#readme"
}