-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.71 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
59
60
61
62
63
64
{
"name": "@fnando/streamdeck",
"version": "0.1.0-alpha.7",
"engines": {
"node": ">= 16.x"
},
"files": [
"dist/**/*",
"templates/**/*",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"description": "A lean framework for developing Elgato Stream Deck plugins.",
"bin": "./bin/cli.js",
"author": {
"name": "Nando Vieira",
"email": "me@fnando.com",
"url": "https://nandovieira.com/"
},
"main": "./dist/index.js",
"homepage": "https://github.com/fnando/streamdeck",
"license": "MIT",
"bugs": "https://github.com/fnando/streamdeck/issues",
"repository": "https://github.com/fnando/streamdeck.git",
"scripts": {
"test": "jest --watch",
"test:ci": "jest --passWithNoTests && yarn lint",
"lint": "yarn lint:ts && yarn lint:eslint",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint src --max-warnings 0",
"build": "rm -rf dist && tsc"
},
"dependencies": {
"esbuild": "*",
"glob": "*",
"image-size": "*",
"rage-edit": "*",
"yargs": "*",
"zip-dir": "*"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@fnando/codestyle": "^0.0.13",
"@fnando/eslint-config-codestyle": "^0.0.10",
"@types/archiver": "^5.3.1",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-loader": "^8.2.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.8.0",
"jest": "^27.4.7",
"jest-filename-transform": "^0.1.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"typescript": "*",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
}
}