-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.28 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
57
58
{
"name": "monkey-language-ts",
"version": "0.0.0",
"description": "Monkey language implementation in TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/AnsonH/monkey-language-ts"
},
"license": "MIT",
"author": {
"name": "AnsonH",
"email": "ansonheung2000@gmail.com"
},
"type": "module",
"bin": {
"monkey-ts": "lib/cli.js"
},
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsup",
"format": "prettier . --write",
"lint": "eslint . --max-warnings 0",
"prepare": "husky",
"test": "vitest",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"cac": "^6.7.14"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.5",
"@vitest/eslint-plugin": "^1.1.4",
"eslint": "^9.11.0",
"eslint-plugin-n": "^17.10.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-curly": "^0.2.2",
"prettier-plugin-packagejson": "^2.5.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=18.3.0"
}
}