forked from microsoft/parallel-prettier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1014 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1014 Bytes
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
{
"name": "@playform/prettier",
"version": "0.0.1",
"description": "Concurrent prettier runner",
"keywords": [
"prettier",
"parallel",
"concurrent",
"mixer",
"playform"
],
"homepage": "https://github.com/PlayForm/RunPrettier#readme",
"bugs": {
"url": "https://github.com/PlayForm/RunPrettier/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PlayForm/RunPrettier.git"
},
"license": "MIT",
"author": "Connor Peet <connor@peet.io>",
"type": "module",
"main": "./Target/index.js",
"types": "./Target/index.d.ts",
"bin": {
"PPrettier": "Target/index.js"
},
"scripts": {
"prepublishOnly": "Build 'Source/**/*.ts'"
},
"dependencies": {
"chalk": "5.4.1",
"commander": "14.0.0",
"glob-stream": "8.0.3",
"ignore": "7.0.5",
"ora": "8.2.0",
"prettier": "3.6.2",
"rxjs": "7.8.2",
"util": "0.12.5"
},
"devDependencies": {
"@playform/build": "0.2.5",
"@types/glob-stream": "8.0.3",
"@types/node": "24.1.0",
"@types/prettier": "3.0.0"
}
}