-
-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "@herb-tools/cli",
"version": "0.7.5",
"description": "Unified CLI for Herb HTML+ERB tools",
"license": "MIT",
"homepage": "https://herb-tools.dev",
"bugs": "https://github.com/marcoroth/herb/issues/new?title=Package%20%60@herb-tools/cli%60:%20",
"repository": {
"type": "git",
"url": "https://github.com/marcoroth/herb.git",
"directory": "javascript/packages/cli"
},
"bin": {
"herb": "./bin/herb"
},
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsup-node && yarn bundle:playground",
"bundle:playground": "node scripts/bundle-playground.mjs",
"watch": "tsup-node --watch",
"test": "vitest run",
"test:watch": "vitest --watch",
"prepublishOnly": "yarn clean && yarn build && yarn test"
},
"dependencies": {
"@herb-tools/config": "0.7.5",
"@herb-tools/formatter": "0.7.5",
"@herb-tools/highlighter": "0.7.5",
"@herb-tools/language-server": "0.7.5",
"@herb-tools/linter": "0.7.5",
"@herb-tools/node-wasm": "0.7.5",
"@herb-tools/printer": "0.7.5",
"@herb-tools/tailwind-class-sorter": "0.7.5",
"glob": "^11.0.3",
"lz-string": "^1.5.0",
"mri": "^1.2.0",
"open": "^10.2.0",
"picocolors": "^1.1.1",
"stimulus-lint": "0.1.5"
},
"files": [
"package.json",
"README.md",
"bin/",
"dist/"
]
}