-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.01 KB
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
{
"name": "prettier-plugin-marko",
"version": "4.1.0",
"description": "A prettier plugin for parsing and printing Marko files",
"keywords": [
"format",
"marko",
"prettier",
"prettyprint"
],
"homepage": "https://github.com/marko-js/prettier",
"bugs": "https://github.com/marko-js/prettier/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/marko-js/prettier.git"
},
"license": "MIT",
"author": "Dylan Piercey <dpiercey@ebay.com>",
"exports": {
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"files": [
"dist",
"!**/__tests__",
"!**/*.tsbuildinfo"
],
"scripts": {
"@ci:build": "pnpm run build",
"@ci:lint": "eslint . && prettier . --check --log-level=warn",
"@ci:release": "pnpm run build && changeset publish && pnpm install --frozen-lockfile",
"@ci:test": "vitest run --coverage --no-color",
"@ci:version": "pnpm run build && pnpm run format && changeset version && pnpm install --lockfile-only",
"build": "tsc -b && rolldown -c",
"change": "changeset add",
"format": "eslint --fix .; prettier . --write --log-level=warn",
"prepare": "husky",
"report": "open ./coverage/lcov-report/index.html",
"test": "vitest run",
"test:update": "vitest run --update"
},
"dependencies": {
"htmljs-parser": "^5.14.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@marko/compiler": "^5.40.0",
"@types/node": "^26.1.0",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.6.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"marko": "^6.2.1",
"prettier": "^3.9.4",
"prettier-plugin-packagejson": "^3.0.2",
"rolldown": "^1.1.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.9"
},
"packageManager": "pnpm@11.15.1"
}