-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@gamesdonequick/typed-obs-scenes",
"version": "0.0.0-development",
"description": "Generate a d.ts file full of enums describing an OBS Scene Collection.",
"main": "dist/lib.js",
"scripts": {
"lint": "npm-run-all -s lint:*",
"lint:prettier": "prettier --list-different \"**/*.{ts,json,md,yml,html,js}\"",
"lint:eslint": "eslint ./src --ext .ts",
"build": "npx tsc -p tsconfig.json",
"fix": "npm-run-all -s fix:*",
"fix:prettier": "prettier --write \"**/*.{ts,json,md,yml,html,js}\"",
"fix:eslint": "npm run lint:eslint -- --fix ",
"test": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/GamesDoneQuick/typed-obs-scenes.git"
},
"keywords": [
"obs",
"typescript",
"types",
"typedef",
"enum"
],
"author": "Games Done Quick LLC <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GamesDoneQuick/typed-obs-scenes/issues"
},
"homepage": "https://github.com/GamesDoneQuick/typed-obs-scenes#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@gamesdonequick/prettier-config": "^2.1.1",
"@supportclass/tsconfig-base": "^1.0.4",
"@types/lodash": "^4.14.173",
"@types/node": "^14.17.6",
"@types/prettier": "^2.4.0",
"@types/yargs": "^13.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo": "^0.38.0",
"eslint-config-xo-typescript": "^0.44.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"npm-run-all": "^4.1.5",
"semantic-release": "^18.0.0",
"typescript": "^4.4.3"
},
"dependencies": {
"lodash": "^4.17.21",
"prettier": "^2.4.1",
"tslib": "^2.3.1",
"yargs": "^14.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,md,yml,html,js}": [
"prettier --write",
"git add"
],
"*.{ts,html,js}": [
"eslint --fix",
"git add"
]
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"bin": {
"typed-obs-scenes": "./dist/bin.js"
}
}