-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.59 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
{
"name": "@szum-tech/prettier-config",
"version": "1.6.5",
"description": "Prettier shareable configuration.",
"keywords": [
"szum-tech",
"Szum-Tech",
"prettier",
"prettier-config"
],
"homepage": "https://github.com/JanSzewczyk/prettier-config#readme",
"bugs": {
"url": "https://github.com/JanSzewczyk/prettier-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JanSzewczyk/prettier-config.git"
},
"license": "MIT",
"author": "Szum-Tech <[email protected]>",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup",
"lint": "eslint .",
"lint:ci": "eslint . -o eslint-results.sarif -f @microsoft/eslint-formatter-sarif",
"lint:fix": "eslint . --fix",
"prettier:check": "NODE_OPTIONS=\"--experimental-strip-types\" prettier --check .",
"prettier:write": "NODE_OPTIONS=\"--experimental-strip-types\" prettier --write .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"prettier-plugin-packagejson": "^2.5.18",
"prettier-plugin-tailwindcss": "^0.7.2"
},
"devDependencies": {
"@szum-tech/eslint-config": "^2.1.10",
"@szum-tech/semantic-release-config": "^2.3.3",
"@types/node": "^25.0.1",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"peerDependencies": {
"prettier": ">=3.6"
},
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public"
}
}