-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.26 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
{
"name": "@alexevs/prettier-config",
"version": "1.0.0",
"description": "Shared Prettier configuration used across multiple projects.",
"author": "AlexEvs",
"homepage": "https://a1exevs.github.io/prettier-config",
"bugs": {
"url": "https://github.com/a1exevs/prettier-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a1exevs/prettier-config.git"
},
"keywords": [
"prettier",
"config",
"formatting"
],
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": "./dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"prettier": "3.5.3"
},
"scripts": {
"version:major": "ts-node scripts/increase-version.ts major",
"version:minor": "ts-node scripts/increase-version.ts minor",
"version:patch": "ts-node scripts/increase-version.ts patch",
"update-version:major": "./scripts/update-version.sh major",
"update-version:minor": "./scripts/update-version.sh minor",
"update-version:patch": "./scripts/update-version.sh patch",
"build": "rimraf dist && tsc",
"format": "yarn build && prettier --config ./dist/index.js --write \"{src,linter,tests,scripts}/**/*.ts\"",
"lint": "eslint --config eslint.config.ts \"{src,linter,tests,scripts}/**/*.{ts,tsx}\"",
"lint:fix": "eslint --config eslint.config.ts --fix \"{src,,linter,tests,scripts}/**/*.{ts,tsx}\"",
"publish-package": "npm publish --access public",
"docs": "typedoc"
},
"devDependencies": {
"@eslint/js": "9.24.0",
"@types/node": "22.15.29",
"@typescript-eslint/eslint-plugin": "8.29.1",
"eslint": "9.24.0",
"eslint-config-prettier": "10.1.2",
"eslint-import-resolver-typescript": "4.3.4",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.6",
"eslint-plugin-tsdoc": "0.4.0",
"eslint-plugin-unused-imports": "4.1.4",
"fs": "0.0.1-security",
"globals": "16.0.0",
"husky": "9.1.7",
"jiti": "2.4.2",
"lint-staged": "16.1.0",
"path": "0.12.7",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typedoc": "0.28.5",
"typescript": "5.8.3",
"typescript-eslint": "8.29.1"
},
"packageManager": "yarn@4.9.0"
}