-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.67 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
{
"name": "twitch-api-types",
"version": "0.8.0",
"description": " Latest Twitch API Typings",
"scripts": {
"build:ci": "tsc --noEmit --incremental false",
"build:node": "tsc",
"clean:node": "rimraf -g {api,eventsub,authentication}/**/*.{js,mjs,d.ts,*map} index.{js,mjs,d.ts,*map}",
"clean": "run-p clean:*",
"lint": "prettier --write . && eslint --fix --ext mjs,ts {api,eventsub,authentication}/**/*.ts index.ts",
"postpublish": "npm run clean:node",
"prepare": "tsc",
"prepublishOnly": "run-s clean test:lint build:node",
"test:lint": "prettier --check . && eslint --ext mjs,ts {api,eventsub,authentication}/**/*.ts index.ts",
"pretest:types": "tsc",
"test:types": "tsd -t ./index.d.ts",
"posttest:types": "npm run clean:node",
"preversion": "npm run lint",
"version": "git add -A .",
"postversion": "git push origin main && git push origin main --tags"
},
"files": [
"{api,eventsub,authentication}/**/*.{js,js.map,d.ts,d.ts.map,mjs}",
"index.{js,js.map,d.ts,d.ts.map,mjs}"
],
"keywords": [
"twitch",
"types"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/larrrssss/twitch-api-types"
},
"devDependencies": {
"@octokit/action": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.14.0",
"@typescript-eslint/utils": "^7.0.1",
"eslint": "^9.7.0",
"eslint-config-neon": "^0.1.58",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-local": "^6.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.1",
"rimraf": "^5.0.5",
"tsd": "^0.31.0",
"typescript": "^5.3.3"
}
}