-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "@herb-tools/config",
"version": "0.9.1",
"description": "Shared configuration utilities for Herb tools",
"license": "MIT",
"homepage": "https://herb-tools.dev",
"bugs": "https://github.com/marcoroth/herb/issues/new?title=Package%20%60@herb-tools/config%60:%20",
"repository": {
"type": "git",
"url": "git+https://github.com/marcoroth/herb.git",
"directory": "javascript/packages/config"
},
"main": "./dist/herb-config.cjs",
"module": "./dist/herb-config.esm.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc -b && rollup -c",
"dev": "tsc -b -w",
"test": "vitest run",
"prepublishOnly": "yarn clean && yarn build && yarn test"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/herb-config.esm.js",
"require": "./dist/herb-config.cjs",
"default": "./dist/herb-config.esm.js"
}
},
"dependencies": {
"@herb-tools/core": "0.9.1",
"picomatch": "^4.0.2",
"tinyglobby": "^0.2.15",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/picomatch": "^4.0.2",
"zod": "^4.3.6",
"zod-validation-error": "^5.0.0"
},
"files": [
"package.json",
"README.md",
"src/",
"dist/"
]
}