generated from bitfocus/companion-module-template-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.33 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
55
56
57
58
{
"name": "companion-module-pulseaudio-server",
"version": "0.9.0",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --fix src/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-pulseaudio-server.git"
},
"dependencies": {
"@companion-module/base": "~1.4.0",
"pulseaudio.js": "^1.3.3"
},
"devDependencies": {
"@companion-module/tools": "^1.2.0",
"eslint": "^8.42.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"typescript": "^5.1.3"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"settings": {
"import/resolver": {
"typescript": {}
}
},
"extends": [
"eslint:recommended",
"plugin:import/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
]
},
"plugins": [
"eslint-plugin-prefer-arrow",
"@typescript-eslint"
]
}
}