-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "@enterlink/vrchat",
"description": "Hand written package for the VRChat API.",
"author": "nobu-sh <chat@nobu.sh>",
"version": "1.8.0",
"license": "MIT",
"repository": "https://github.com/enterverse/vrchat",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./adapter/*": {
"require": "./dist/adapters/*/index.js",
"import": "./dist/adapters/*/index.mjs",
"types": "./dist/adapters/*/index.d.ts"
}
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE",
".gitignore",
".gitattributes"
],
"packageManager": "yarn@4.4.0",
"engines": {
"node": ">=22"
},
"devDependencies": {
"@ariesclark/eslint-config": "^2.0.1",
"@prisma/client": "^5.17.0",
"@types/node": "^22.1.0",
"eslint": "9",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"otplib": "^12.0.1",
"vrchat": "^1.18.1"
},
"peerDependencies": {
"@prisma/client": "*"
}
}