-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.7 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
{
"name": "prettier-plugin-pegjs",
"description": "A Prettier plugin for formatting Pegjs and Peggy-js grammars",
"version": "2.0.3",
"type": "module",
"author": {
"name": "Jason Siefken",
"email": "siefkenj@gmail.com"
},
"keywords": [
"pegjs",
"parser",
"prettier"
],
"main": "dist/prettier-plugin-pegjs.js",
"files": [
"dist/**/*.js",
"dist/**/*.ts",
"dist/**/*.js.map",
"dist/**/*.cjs",
"dist/**/*.cts",
"dist/**/*.cjs.map"
],
"exports": {
".": {
"import": "./dist/prettier-plugin-pegjs.js",
"require": "./dist/prettier-plugin-pegjs.cjs"
},
"./standalone": {
"import": "./dist/standalone.js",
"require": "./dist/standalone.cjs"
}
},
"scripts": {
"test": "vitest",
"watch": "vite build --watch",
"build": "vite build"
},
"dependencies": {
"prettier": "^3.0.2"
},
"devDependencies": {
"@types/node": "^20.5.6",
"@types/prettier": "^3.0.0",
"eslint": "^8.48.0",
"jsdom": "^22.1.0",
"mkdirp": "3.0.1",
"peggy": "^3.0.2",
"resolve-cwd": "^3.0.0",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.2",
"vitest": "^0.34.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siefkenj/prettier-plugin-pegjs.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/siefkenj/prettier-plugin-pegjs/issues"
},
"homepage": "https://github.com/siefkenj/prettier-plugin-pegjs#readme",
"engines": {
"node": ">= 16.0"
}
}