-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 895 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 895 Bytes
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
{
"name": "yourpluginname",
"version": "1.0.0",
"description": "my first plugin",
"type": "module",
"scripts": {
"build": "npm run build:app && npm run build:lib",
"build:app": "tsc && vite build --config vite.config.app.js",
"build:lib": "tsc && vite build --config vite.config.lib.js",
"prepare": "npm run build:lib"
},
"main": "./dist/lib/index.js",
"module": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js"
}
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@minecraft/server": "^2.4.0",
"@minecraft/server-ui": "^2.0.0",
"eslint": "^9.38.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.2",
"vite": "^7.1.7",
"vite-plugin-dts": "^4.5.4"
},
"dependencies": {
"keystonemc": "^4.0.0"
}
}