forked from marcoroth/herb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.79 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
{
"name": "@herb-tools/linter",
"version": "0.8.10",
"description": "HTML+ERB linter for validating HTML structure and enforcing best practices",
"license": "MIT",
"homepage": "https://herb-tools.dev",
"bugs": "https://github.com/marcoroth/herb/issues/new?title=Package%20%60@herb-tools/linter%60:%20",
"repository": {
"type": "git",
"url": "git+https://github.com/marcoroth/herb.git",
"directory": "javascript/packages/linter"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"bin": {
"herb-lint": "bin/herb-lint"
},
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc -b && rollup -c",
"watch": "tsc -b -w",
"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.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./cli": {
"types": "./dist/types/cli.d.ts",
"import": "./dist/cli.js",
"require": "./dist/cli.js",
"default": "./dist/cli.js"
},
"./loader": {
"types": "./dist/types/loader.d.ts",
"import": "./dist/loader.js",
"require": "./dist/loader.cjs",
"default": "./dist/loader.js"
}
},
"dependencies": {
"@herb-tools/config": "0.8.10",
"@herb-tools/core": "0.8.10",
"@herb-tools/highlighter": "0.8.10",
"@herb-tools/node-wasm": "0.8.10",
"@herb-tools/printer": "0.8.10",
"@herb-tools/rewriter": "0.8.10",
"picomatch": "^4.0.4",
"tinyglobby": "^0.2.15"
},
"files": [
"package.json",
"README.md",
"docs/",
"src/",
"bin/",
"dist/"
]
}