-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "@herb-tools/formatter",
"version": "0.9.1",
"description": "Auto-formatter for HTML+ERB templates with intelligent indentation, line wrapping, and ERB-aware pretty-printing.",
"license": "MIT",
"homepage": "https://herb-tools.dev",
"bugs": "https://github.com/marcoroth/herb/issues/new?title=Package%20%60@herb-tools/formatter%60:%20",
"repository": {
"type": "git",
"url": "git+https://github.com/marcoroth/herb.git",
"directory": "javascript/packages/formatter"
},
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"require": "./dist/index.cjs",
"types": "./dist/types/index.d.ts",
"bin": {
"herb-format": "bin/herb-format"
},
"scripts": {
"build": "yarn clean && rollup -c rollup.config.mjs",
"dev": "rollup -c rollup.config.mjs -w",
"clean": "rimraf dist",
"test": "vitest run",
"test:watch": "vitest --watch",
"prepublishOnly": "yarn clean && yarn build && yarn test"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs",
"default": "./dist/index.esm.js"
}
},
"dependencies": {
"@herb-tools/config": "0.9.1",
"@herb-tools/core": "0.9.1",
"@herb-tools/printer": "0.9.1",
"@herb-tools/rewriter": "0.9.1",
"tinyglobby": "^0.2.15"
},
"files": [
"package.json",
"README.md",
"dist/",
"src/",
"bin/"
]
}