-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.26 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"$schema": "https://json.schemastore.org/package.json",
"name": "twitch-dev-types",
"description": "Up-to-date Twitch Typings based on the official Twitch Dev Docs",
"version": "1.6.0",
"homepage": "https://github.com/twive-app",
"author": "twive.app",
"keywords": [
"twitch",
"twitch api",
"twitch eventsub",
"types",
"twitch types",
"twitch dev"
],
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"import": "./index.js"
},
"./api": {
"types": "./api/index.d.ts",
"require": "./api/index.js",
"import": "./api/index.js"
},
"./authentication": {
"types": "./authentication/index.d.ts",
"require": "./authentication/index.js",
"import": "./authentication/index.js"
},
"./eventsub": {
"types": "./eventsub/index.d.ts",
"require": "./eventsub/index.js",
"import": "./eventsub/index.js"
}
},
"files": [
"{api,authentication,eventsub}/**/*.{d.ts,d.ts.map,js,js.map}",
"*.{d.ts,d.ts.map,js,js.map}"
],
"scripts": {
"build:ci": "tsc --noEmit --incremental false",
"build:node": "tsc",
"lint": "eslint --fix --ext ts .",
"prepare": "husky"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-angular": "^21.2.2",
"@typescript-eslint/eslint-plugin": "^8.69.0",
"@typescript-eslint/parser": "^8.69.0",
"eslint": "^10.10.0",
"eslint-plugin-unicorn": "^74.0.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"lint-staged": "^17.5.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.69.0"
},
"publishConfig": {
"provenance": true,
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twive-app/twitch-dev-types.git"
},
"bugs": {
"url": "https://github.com/twive-app/twitch-dev-types/issues"
},
"lint-staged": {
"{api,authentication,eventsub}/**/*.{ts,d.ts,d.ts.map,js,js.map}": [
"eslint --fix",
"eslint"
],
"*.{ts,d.ts,d.ts.map,js,js.map}": [
"eslint --fix",
"eslint"
]
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"header-max-length": [
2,
"always",
120
],
"type-enum": [
2,
"always",
[
"feat",
"fix",
"refactor",
"perf",
"style",
"test",
"docs",
"build",
"chore",
"src",
"ci",
"revert"
]
],
"scope-case": [
1,
"always",
"pascal-case"
]
}
}
}