-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.22 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
57
{
"name": "@carbonhost/typescript",
"version": "0.0.88",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"release:local": "pnpm run build && pnpm publish",
"lint": "tsc"
},
"packageManager": "pnpm@9.13.2",
"author": {
"name": "Carbon Host",
"email": "contact@carbon.host",
"url": "https://carbon.host"
},
"repository": {
"type": "git",
"url": "https://github.com/carbon-host/carbon-typescript"
},
"license": "GNU AGPL",
"keywords": [
"carbon",
"typescript",
"sdk",
"hosting",
"carbonhost",
"minecraft",
"minecraft-server"
],
"bugs": {
"url": "https://github.com/carbon-host/carbon-typescript/issues"
},
"homepage": "https://github.com/carbon-host/carbon-typescript",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.9",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.7.7"
},
"release": {
"branches": [
"master"
]
},
"files": [
"dist"
]
}