-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.83 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.83 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@jannael/config",
"version": "0.0.0",
"private": false,
"description": "One command to get linter and formatter setup for your project.",
"keywords": [
"config",
"linter",
"formatter",
"eslint",
"prettier",
"cli"
],
"homepage": "https://config.jannael.com",
"bugs": {
"url": "https://github.com/jannael/config/issues"
},
"license": "MIT",
"author": {
"name": "Jannael",
"url": "https://github.com/jannael"
},
"repository": {
"type": "git",
"url": "https://github.com/Jannael/config.git"
},
"bin": {
"@jannael/config": "./dist/index.js"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest --run",
"build": "bun build ./apps/cli/index.ts --outfile=./dist/index.js --target=bun",
"prepublishOnly": "bun run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "1.4.0",
"gradient-string": "3.0.0",
"jsonc-parser": "3.3.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/bun": "1.3.14",
"@typescript-eslint/eslint-plugin": "8.60.0",
"@typescript-eslint/parser": "8.60.0",
"astro-eslint-parser": "1.4.0",
"eslint": "10.4.0",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-tailwindcss": "3.18.3",
"husky": "9.1.7",
"lint-staged": "17.0.5",
"prettier": "3.8.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.8.0",
"tailwindcss": "3.4.0",
"typescript-eslint": "8.60.0",
"vitest": "4.1.7"
},
"peerDependencies": {
"typescript": "6.0.3"
},
"engines": {
"bun": ">=1.0.0"
}
}