-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.62 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
{
"name": "prettier-max",
"version": "0.0.1",
"description": "Minimalist automatic Prettier formatting plugin for Vite",
"keywords": [
"prettier",
"vite",
"plugin",
"typescript",
"detect-deprecation"
],
"author": "Kouji Matsui (@kekyo@mi.kekyo.net)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kekyo/prettier-max.git"
},
"homepage": "https://github.com/kekyo/prettier-max#readme",
"readme": "README_pack.md",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
&quo
5926
t;types": "./dist/src/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"LICENSE",
"images/prettier-max-120.png"
],
"scripts": {
"build": "./gen-packageMetadata.sh && vite build",
"test": "npm run build && vitest run",
"dump": "npm run build && screw-up dump",
"pack": "npm run build && screw-up pack --pack-destination artifacts/"
},
"dependencies": {
"prettier": ">=3.6.0",
"debug": ">=4.4.0",
"ignore": ">=5.3.0"
},
"peerDependencies": {
"prettier": ">=3.6.0",
"typescript": ">=5.0.0 <7.0.0",
"vite": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"prettier": {
"optional": true
}
},
"devDependencies": {
"@types/debug": ">=4.1.0",
"@types/fs-extra": ">=11.0.0",
"@types/node": ">=20.0.0",
"dayjs": ">=1.11.0",
"screw-up": ">=1.33.0",
"unplugin-dts": ">=1.0.0-beta.6",
"vitest": ">=1.0.0"
}
}