-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "@bridge-editor/dash-compiler",
"version": "0.11.7",
"description": "A fast compiler for Minecraft Add-Ons",
"scripts": {
"build:types": "tsc --project tsconfig.json",
"build:bundled": "vite --config vite.config.bundled.js build",
"build:only": "vite build && npm run build:bundled",
"build": "npm run build:only && npm run build:types",
"test": "vitest"
},
"main": "./dist/dash-compiler.umd.js",
"module": "./dist/dash-compiler.es.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/dash-compiler.es.js",
"require": "./dist/dash-compiler.umd.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/bridge-core/dash-compiler.git"
},
"author": "solvedDev",
"contributors": [
{
"name": "Thomas Orsbourne",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bridge-core/dash-compiler/issues"
},
"homepage": "https://github.com/bridge-core/dash-compiler#readme",
"dependencies": {
"@bridge-editor/common-utils": "^0.3.3",
"@bridge-editor/js-runtime": "^0.4.5",
"@bridge-editor/mc-project-core": "^0.4.0",
"@bridge-editor/molang": "^2.0.2",
"@swc/wasm-web": "1.6.5",
"is-glob": "^4.0.3",
"json5": "^2.2.0",
"micromatch": "^4.0.4",
"path-browserify": "^1.0.1"
},
"devDependencies": {
"@types/is-glob": "^4.0.2",
"@types/node": "^16.11.12",
"@types/path-browserify": "^1.0.0",
"typescript": "^4.5.4",
"vite": "^2.6.13",
"vitest": "^0.22.1"
}
}