-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.88 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.88 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
{
"name": "mixi2-js",
"version": "1.4.1",
"description": "TypeScript/JavaScript SDK for mixi2 Application API",
"keywords": [
"api",
"bot",
"grpc",
"mixi",
"mixi.social",
"mixi2",
"sdk",
"webhook"
],
"homepage": "https://mixi2.js.org/",
"bugs": {
"url": "https://github.com/otoneko1102/mixi2-js/issues"
},
"license": "Apache-2.0",
"author": "otoneko.",
"repository": {
"type": "git",
"url": "git+https://github.com/otoneko1102/mixi2-js.git"
},
"files": [
"dist",
"proto"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./helpers": {
"import": {
"types": "./dist/helpers/index.d.mts",
"default": "./dist/helpers/index.mjs"
},
"require": {
"types": "./dist/helpers/index.d.cts",
"default": "./dist/helpers/index.cjs"
}
}
},
"scripts": {
"setup": "npm install && node scripts/setup.js",
"test": "vp test",
"check": "vp check",
"check:all": "vp check && vp test && vp pack",
"check:types": "tsc --noEmit",
"checkversion": "ncu",
"up": "ncu -u && npm install",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"build": "vp pack",
"format": "vp fmt",
"format:check": "vp fmt --check"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"consola": "^3.4.2",
"dotenv": "^17.3.1",
"npm-check-updates": "^19.6.5",
"typescript": "^5.9.3",
"vite-plus": "^0.1.13"
},
"engines": {
"node": ">=18.0.0"
}
}