-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.5 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@elegantech/prettier-multi-config",
"version": "0.0.0-development",
"type": "module",
"description": "Pre-configuration builder for Prettier 3 to support multiple file formats.",
"repository": {
"type": "git",
"url": "git+https://github.com/elegantech/prettier-multi-config.git"
},
"author": {
"email": "nelson6e65@gmail.com",
"name": "Nelson Martell"
},
"license": "Apache-2.0",
"workspaces": [
"examples/*"
],
"engines": {
"node": ">=12.17.0"
},
"main": "./dist/index.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./helpers": {
"types": "./dist/helpers/index.d.ts",
"require": "./dist/helpers/index.cjs",
"import": "./dist/helpers/index.mjs",
"default": "./dist/helpers/index.mjs"
},
"./presets": {
"types": "./dist/presets/index.d.ts",
"require": "./dist/presets/index.cjs",
"import": "./dist/presets/index.mjs",
"default": "./dist/presets/index.mjs"
}
},
"types": "./dist/index.d.ts",
"keywords": [
"prettier",
"prettier-plugin",
"prettier-config",
"prettier-preset",
"prettier-presets",
"static analysis"
],
"scripts": {
"build": "unbuild",
"build:watch": "watch 'npm run build' src",
"fix:eslint": "eslint . --fix",
"fix:style": "prettier --write .",
"internal:build": "unbuild internal",
"internal:promote-prettier": "node scripts/promote-prettier-config.mjs",
"lint:all": "concurrently -t --success=all --timings \"npm:lint:*(!all)\"",
"lint:eslint": "eslint .",
"lint:prettier-config": "npx prettier --check --no-error-on-unmatched-pattern --log-level=silent test",
"lint:style": "prettier --check .",
"lint:ts": "tsc --noEmit -p tsconfig.main.json && tsc --noEmit -p tsconfig.configs.json && tsc --noEmit -p tsconfig.internal.json && tsc --noEmit -p tsconfig.test.json",
"postinternal:build": "npm run internal:promote-prettier",
"postinternal:promote-prettier": "prettier --write ./.prettierrc.json",
"prepack": "npm run build",
"prepare": "is-ci || husky install",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"peerDependencies": {
"prettier": "^3.0.0"
},
"dependencies": {
"tslib": "^2.6.2"
},
"optionalDependencies": {
"@prettier/plugin-php": ">= 0.20.1",
"prettier-plugin-multiline-arrays": "^3.0.0",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-pkg": ">= 0.18.0",
"prettier-plugin-sh": ">= 0.13.1"
},
"devDependencies": {
"@types/node": "^18.17.15",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/coverage-v8": "^0.34.4",
"@vitest/ui": "^0.34.4",
"bun-types": "^1.0.2",
"chalk": "^5.3.0",
"concurrently": "^8.2.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^15.0.0",
"prettier": "^3.0.3",
"prettier-plugin-multiline-arrays": "^3.0.0",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-pkg": "^0.18.0",
"prettier-plugin-sh": "^0.13.1",
"semantic-release": "^22.0.5",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.4",
"watch": "^1.0.2"
}
}