-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) 路 1.49 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) 路 1.49 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
{
"name": "rosepack",
"version": "0.3.0",
"description": "A strongly typed Oceanic interaction and command framework.",
"homepage": "https://github.com/taskylizard/rosepack#readme",
"bugs": {
"url": "https://github.com/taskylizard/rosepack/issues"
},
"license": "MIT",
"author": "taskylizard",
"repository": {
"type": "git",
"url": "git+https://github.com/taskylizard/rosepack.git"
},
"bin": {
"rosepack": "./dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./cli": "./dist/cli.mjs",
"./http": "./dist/http.mjs",
"./vite": "./dist/vite.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"dev": "vp pack --watch",
"prepublishOnly": "vp run build"
},
"dependencies": {
"gunshi": "0.37.0",
"obug": "2.1.4"
},
"devDependencies": {
"@types/node": "26.1.1",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"bumpp": "12.0.0",
"oceanic.js": "1.14.0",
"typescript": "7.0.2",
"vite": "catalog:",
"vite-plus": "catalog:"
},
"peerDependencies": {
"oceanic.js": "1.14.0",
"vite": "8.1.3"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.13.1",
"onFail": "download"
}
},
"engines": {
"node": ">=22"
}
}