-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 965 Bytes
/
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
{
"name": "@bridge-editor/molang",
"version": "2.0.2",
"description": "A fast parser for Minecraft's MoLang",
"main": "./dist/molang.umd.js",
"module": "./dist/molang.es.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/molang.es.js",
"require": "./dist/molang.umd.js"
}
},
"directories": {
"lib": "lib"
},
"scripts": {
"build:types": "tsc --project tsconfig.json",
"build:only": "vite build",
"build": "npm run build:only && npm run build:types",
"test": "vitest",
"bench": "vitest bench"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bridge-core/molang.git"
},
"author": "solvedDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/bridge-core/molang/issues"
},
"homepage": "https://github.com/bridge-core/molang#readme",
"devDependencies": {
"@types/node": "^13.1.2",
"molangjs": "^1.5.0",
"typescript": "^4.2.3",
"vite": "^3.1.3",
"vitest": "^0.23.4"
}
}