forked from zSoulweaver/kient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.93 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
{
"name": "kient",
"type": "module",
"version": "1.0.1-16",
"packageManager": "pnpm@8.10.2",
"description": "TypeScript-First Client Library for Kick.com",
"author": "Soulweaver",
"license": "MIT",
"repository": "zSoulweaver/kient",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "pnpm --filter playground dev",
"docs:dev": "tsup-node --config tsup-typedoc.config.ts && typedoc && vitepress dev docs",
"docs:build": "tsup-node --config tsup-typedoc.config.ts && typedoc && vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint .",
"changelog:prerelease": "changelogen --output --release --prerelease",
"changelog:release": "changelogen --output --release",
"prerelease": "pnpm changelog:prerelease",
"release": "pnpm changelog:release"
},
"dependencies": {
"@deepkit/type": "1.0.1-alpha.105",
"cycletls": "^1.0.22",
"exit-hook": "^4.0.0",
"ofetch": "^1.3.3",
"pusher-js": "^8.3.0",
"strict-event-emitter": "^0.5.1",
"tough-cookie": "^4.1.3",
"tseep": "^1.1.3"
},
"devDependencies": {
"@antfu/eslint-config": "^1.1.0",
"@deepkit/type-compiler": "1.0.1-alpha.105",
"@gjsify/esbuild-plugin-deepkit": "^0.0.3",
"@types/eslint": "^8.44.7",
"@types/node": "^20.9.0",
"@types/tough-cookie": "^4.0.5",
"changelogen": "^0.5.5",
"eslint": "^8.53.0",
"pnpm": "^8.10.2",
"tsup": "^7.2.0",
"typedoc": "^0.25.4",
"typedoc-plugin-frontmatter": "^0.0.2",
"typedoc-plugin-markdown": "4.0.0-next.35",
"typedoc-plugin-missing-exports": "^2.1.0",
"typedoc-vitepress-theme": "1.0.0-next.3",
"typescript": "5.2.2",
"vitepress": "1.0.0-rc.25"
}
}