forked from microsoft/parallel-prettier
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1015 Bytes
/
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
{
"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 <[email protected]>",
"type": "module",
"main": "./Target/index.js",
"types": "./Target/index.d.ts",
"bin": {
"PPrettier": "Target/index.js"
},
"scripts": {
"prepublishOnly": "Build 'Source/**/*.ts'"
},
"dependencies": {
"chalk": "5.3.0",
"commander": "12.1.0",
"glob-stream": "8.0.2",
"ignore": "6.0.2",
"ora": "8.1.1",
"prettier": "3.4.2",
"rxjs": "7.8.1",
"util": "0.12.5"
},
"devDependencies": {
"@playform/build": "0.2.0",
"@types/glob-stream": "8.0.2",
"@types/node": "22.10.1",
"@types/prettier": "3.0.0"
}
}