-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.47 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@merrywhether/config",
"version": "4.1.0",
"description": "Common config files for @merrywhether projects",
"type": "module",
"files": [
"@types/",
"scripts/",
"src/",
"LICENSE",
"README.md"
],
"exports": {
".": {
"types": "./@types/projen/index.d.ts",
"default": "./src/projen/index.js"
},
"./eslint": {
"types": "./@types/eslint/index.d.ts",
"default": "./src/eslint/index.js"
},
"./prettier": {
"types": "./@types/prettier.d.ts",
"default": "./src/prettier.js"
},
"./ts-base": "./src/ts/base.json",
"./ts-solid": "./src/ts/solid.json",
"./ts-styled": "./src/ts/styled.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/merrywhether/config.git"
},
"author": "merrywhether",
"license": "MIT",
"homepage": "https://github.com/merrywhether/config#readme",
"scripts": {
"build:types": "tsc -p tsconfig.build.json",
"clean": "rm -rf @types *.tsbuildinfo",
"fix": "pnpm lint:es:fix && pnpm lint:md:fix",
"lint": "pnpm lint:es && pnpm lint:md",
"lint:es": "eslint './'",
"lint:es:fix": "pnpm lint:es --fix",
"lint:md": "prettier '**/*.md' --check",
"lint:md:fix": "prettier '**/*.md' --write",
"pj": "node .projenrc.js",
"postinstall": "node scripts/postinstall.mjs",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=20.18.0"
},
"dependencies": {
"@eslint-react/eslint-plugin": "^1.16.1",
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.12.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"command-line-args": "^6.0.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.3.1",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0-rc-0751fac7-20241002",
"eslint-plugin-solid": "^0.14.4",
"globals": "^15.12.0",
"knitwork": "^1.1.0",
"prettier": "^3.3.3",
"projen": "^0.90.3",
"semver": "^7.6.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0"
},
"peerDependencies": {
"@styled/typescript-styled-plugin": "^1.0.1"
},
"peerDependenciesMeta": {
"@styled/typescript-styled-plugin": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.17.6",
"@types/react": "^18.3.11",
"@types/semver": "^7.5.8"
},
"packageManager": "[email protected]"
}