-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "prettier-plugin-marko-htmljs",
"description": "A prettier plugin for parsing and printing Marko files that uses the htmljs-parser",
"version": "0.0.5",
"type": "module",
"main": "./dist/plugin.mjs",
"module": "./dist/plugin.mjs",
"exports": {
".": {
"import": "./dist/plugin.mjs",
"default": "./dist/plugin.mjs"
},
"./browser": "./dist/browser.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b && rollup -c",
"dev": "rollup -c -w",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest -w"
},
"keywords": [],
"author": "Angus Morton",
"homepage": "https://github.com/AngusMorton/prettier-plugin-marko-htmljs",
"bugs": "https://github.com/AngusMorton/prettier-plugin-marko-htmljs/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AngusMorton/prettier-plugin-marko-htmljs"
},
"peerDependencies": {
"htmljs-parser": "^5",
"prettier": "^3"
},
"devDependencies": {
"@babel/types": "^7.24.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.12.3",
"htmljs-parser": "^5.5.2",
"prettier": "^3.2.5",
"rollup": "^4.14.0",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vitest": "^1.4.0"
}
}