-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "emcl",
"version": "1.0.2",
"description": "A language designed to compile to mcfunction files.",
"type": "module",
"bin": {
"emcl": "./app-cli/dst/main.js"
},
"files": [
"./app-cli/**"
],
"scripts": {
"watch": "rollup -c --w & sass src/app-web/main.scss:app-web/dst/main.css --style=compressed --watch"
},
"author": "Cymaera",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/node": "^18.11.9",
"fontawesome-svgs": "^1.0.0",
"rollup": "^2.56.3",
"rollup-plugin-add-shebang": "^0.3.1",
"rollup-plugin-string": "^3.0.0",
"sass": "^1.70.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheCymaera/emcl.git"
},
"keywords": [
"minecraft",
"datapack",
"commands",
"compiler",
"mcfunction"
],
"bugs": {
"url": "https://github.com/TheCymaera/emcl/issues"
},
"homepage": "https://github.com/TheCymaera/emcl/"
}