-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
{
"name": "@mozisan/prettier-config",
"version": "3.1.0",
"homepage": "https://github.com/mozisan/prettier-config#readme",
"bugs": {
"url": "https://github.com/mozisan/prettier-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozisan/prettier-config.git"
},
"license": "MIT",
"author": "mozisan",
"type": "module",
"exports": {
".": {
"import": "./dist/default.js",
"require": "./dist/default.cjs"
},
"./tailwindcss": {
"import": "./dist/tailwindcss.js",
"require": "./dist/tailwindcss.cjs"
}
},
"main": "./dist/default.cjs",
"module": "./dist/default.js",
"files": [
"dist",
"package.json"
],
"scripts": {
"prepare": "husky install",
"build": "tsup",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier --write --log-level=warn .",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check --log-level=warn ."
},
"prettier": "./dist/default.js",
"dependencies": {
"prettier-plugin-packagejson": "^2.4.12",
"prettier-plugin-tailwindcss": "^0.5.12"
},
"devDependencies": {
"@mozisan/eslint-plugin": "^2.3.0",
"@touchspot/eslint-plugin": "^1.0.0",
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all2": "^6.1.2",
"pkgroll": "^2.0.2",
"prettier": "^3.2.5",
"prettier-plugin-toml": "^2.0.1",
"typescript": "^5.4.2"
},
"peerDependencies": {
"prettier": "^3"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}