forked from Pete9xi/ThirdEye
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.79 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.79 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
{
"name": "phoenix-epsilon",
"version": "1.3.3-beta.3",
"productName": "PhoenixEpsilon",
"description": "Two-way chat between Discord and Minecraft Bedrock",
"type": "module",
"private": true,
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/node": "22.10.1",
"archiver": "^7.0.1",
"bedrock-protocol": "^3.46.0",
"cpy-cli": "^5.0.0",
"discord-api-types": "0.37.110",
"discord.js": "14.15.3",
"prettier": "3.4.2",
"tsx": "^4.7.1",
"typescript": "5.7.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"useTabs": false,
"semi": true,
"printWidth": 250
},
"scripts": {
"format": "npx prettier --write --ignore-path .prettierignore ./",
"clean": "rimraf .build",
"clean:dist": "rimraf dist",
"install:dev": "npm i --include=dev",
"prepare:dirs": "node prepare-dirs.js",
"copy:bin": "node copy-bin.js",
"copy:src-assets": "node copy-src-assets.js",
"copy:root-files": "node copy-root-files.js",
"modify:package": "tsx modify-package.ts",
"build": "npm run install:dev && npm run clean && tsc -p tsconfig.json && npm run prepare:dirs && npm run copy:bin && npm run copy:src-assets && npm run copy:root-files && npm run modify:package",
"bundle": "npm run build && tsx bundle.ts && npm run clean",
"release:patch": "npm version patch && npm run bundle",
"release:minor": "npm version minor && npm run bundle",
"release:major": "npm version major && npm run bundle",
"publish": "npm run clean:dist && npm run bundle && gh release create v$npm_package_version --title \"PhoenixEpsilon v$npm_package_version\" --generate-notes ./dist/phoenixepsilon-v$npm_package_version.zip"
},
"dependencies": {
"dotenv": "^16.4.7",
"minecraft-data": "3.84.1",
"rimraf": "^3.0.2"
}
}