-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.04 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
{
"name": "@prettier/cli",
"repository": "github:prettier/prettier-cli",
"description": "A faster CLI for Prettier.",
"license": "MIT",
"version": "0.6.0",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"prettier-next": "dist/bin.js"
},
"exports": {
".": "./dist/index.js",
"./bin": "./dist/bin.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"clean": "rm -rf dist",
"compile": "tsc --outDir dist",
"compile:watch": "tsc --outDir dist --watch",
"prepublishOnly": "npm run compile && npm run test",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --runInBand --rootDir test/__tests__",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"prettier": "^3.1.0 || ^4.0.0"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"atomically": "^2.0.3",
"fast-ignore": "^1.1.3",
"find-up-json": "^2.0.4",
"function-once": "^3.0.0",
"import-meta-resolve": "^4.1.0",
"is-binary-path": "^2.1.0",
"js-yaml": "^4.1.0",
"json-sorted-stringify": "^1.0.0",
"json5": "^2.2.3",
"kasi": "^1.1.0",
"lomemo": "^1.0.0",
"pioppo": "^1.2.0",
"promise-resolve-timeout": "^2.0.0",
"specialist": "^1.4.3",
"tiny-editorconfig": "^1.0.0",
"tiny-jsonc": "^1.0.1",
"tiny-readdir-glob": "^1.22.24",
"tiny-spinner": "^2.0.4",
"worktank": "^2.7.3",
"zeptomatch": "^2.0.0",
"zeptomatch-escape": "^1.0.0",
"zeptomatch-is-static": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.7",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-snapshot-serializer-ansi": "^2.1.0",
"jest-snapshot-serializer-raw": "^2.0.0",
"json-archive": "^2.1.0",
"nanoexec": "^1.1.0",
"prettier": "3.3.3",
"radix64-encoding": "^2.0.1",
"tiny-dirname": "^1.0.1",
"typescript": "^5.4.5"
}
}