-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 862 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
{
"name": "@unarray/cli-envy",
"version": "1.0.1",
"author": "Unarray",
"license": "ISC",
"type": "module",
"bin": {
"envy": "dist/envy"
},
"scripts": {
"link-cli": "bun unlink && bun link && bun link -g @unarray/cli-envy",
"build": "bun build --compile --minify --sourcemap ./src/bin.ts --outfile dist/envy"
},
"keywords": [
"cli",
"envy",
"cli-envy"
],
"dependencies": {
"@inquirer/prompts": "^6.0.1",
"copy-paste": "^1.5.3",
"dedent": "^1.5.3",
"yargs": "^17.7.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@bluzzi/eslint-config": "^1.2.1",
"@types/bun": "latest",
"@types/copy-paste": "^1.1.33",
"@types/yargs": "^17.0.33",
"eslint": "8",
"typescript": "^5.6.2"
},
"eslintConfig": {
"extends": "@bluzzi",
"rules": {
"max-len": "off"
}
}
}