-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "@maastrich/moonx",
"version": "0.1.6",
"description": "A CLI tool to help you with moon syntax",
"keywords": [
"moon",
"moonrepo",
"cli",
"proto"
],
"license": "MIT",
"author": "Maastrich @maastrich",
"type": "module",
"main": "src/index.ts",
"bin": {
"moonx": "bin/moonx",
"mx": "bin/moonx"
},
"files": [
"bin",
"scripts/setup-binary.js"
],
"scripts": {
"build": "bun build --compile . --outfile=\"bin/moonx\"",
"postinstall": "node scripts/setup-binary.js",
"prettier": "prettier --write .",
"semver-check": "bun run scripts/semver-check.ts",
"sort": "bun x sort-package-json"
},
"devDependencies": {
"@moonrepo/types": "^1.21.3",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/nunjucks": "^3.2.6",
"@types/semver": "^7.5.5",
"@withfig/autocomplete-types": "^1.29.0",
"bun-types": "^1.0.11",
"cac": "^6.7.14",
"chalk": "^5.3.0",
"node-emoji": "^2.1.0",
"nunjucks": "^3.2.4",
"prettier": "^3.0.3",
"semver": "^7.6.3",
"sort-package-json": "^2.6.0",
"yaml": "^2.3.4"
}
}