-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.58 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
{
"name": "housify",
"version": "0.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Gusarich/housify.git"
},
"description": "Advanced programming language and compiler specifically designed for Hypixel Housing",
"main": "dist/index.js",
"bin": {
"housify": "dist/cli/main.js",
"hsf": "dist/cli/main.js"
},
"author": "Gusarich",
"license": "MIT",
"scripts": {
"build": "ohm generateBundles --withTypes src/grammar/*.ohm && tsc && cp ./src/grammar/grammar.ohm* ./dist/grammar/",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check . --end-of-line auto",
"spell": "cspell src --no-progress",
"all": "yarn format:check && yarn lint && yarn spell",
"test": "jest",
"clean": "rm -rf dist",
"prepare": "husky",
"prepack": "yarn clean && yarn build"
},
"devDependencies": {
"@eslint/create-config": "^1.1.5",
"@eslint/js": "^9.6.0",
"@ohm-js/cli": "^2.0.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/jest": "^29.5.12",
"cspell": "^8.10.4",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"husky": "^9.1.1",
"jest": "^29.7.0",
"prettier": "3.3.2",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0"
},
"dependencies": {
"commander": "^12.1.0",
"ohm-js": "^17.1.0"
}
}