-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.39 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
{
"name": "companion-module-audinate-dante-ddm",
"version": "1.1.0",
"main": "dist/main.js",
"scripts": {
"clean": "rimraf dist",
"format": "prettier -w .",
"transpile": "tsc",
"install": "npm run --silent transpile",
"graphql-codegen": "npx graphql-code-generator --verbose",
"prepare": "husky install",
"dev": "yarn build:watch",
"build": "rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"lint": "eslint ./src --ext .ts",
"postinstall": "yarn build"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-audinate-dante-ddm.git"
},
"dependencies": {
"@apollo/client": "^3.10.4",
"@babel/core": "^7.24.5",
"@companion-module/base": "~1.8.0",
"@graphql-codegen/client-preset": "^4.2.6",
"@types/node": "^18.19.33",
"@typescript-eslint/parser": "^7.10.0",
"cross-fetch": "^4.0.0",
"eslint": "^8.57.0",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@companion-module/tools": "^1.5.0",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.7",
"@graphql-codegen/typescript-operations": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"husky": "^9.0.11"
},
"prettier": "@companion-module/tools/.prettierrc.json"
}