-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "@herb-tools/core",
"version": "0.9.1",
"description": "Core module exporting shared interfaces, AST node definitions, and common utilities for Herb",
"license": "MIT",
"homepage": "https://herb-tools.dev",
"bugs": "https://github.com/marcoroth/herb/issues/new?title=Package%20%60@herb-tools/core%60:%20",
"repository": {
"type": "git",
"url": "git+https://github.com/marcoroth/herb.git",
"directory": "javascript/packages/core"
},
"main": "./dist/herb-core.cjs",
"module": "./dist/herb-core.esm.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "yarn clean && rollup -c",
"dev": "rollup -c -w",
"clean": "rimraf dist",
"test": "vitest run",
"prepublishOnly": "yarn clean && yarn build && yarn test"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/herb-core.esm.js",
"require": "./dist/herb-core.cjs",
"default": "./dist/herb-core.esm.js"
}
},
"dependencies": {},
"devDependencies": {
"@ruby/prism": "^1.9.0"
},
"files": [
"package.json",
"README.md",
"dist/",
"src/"
]
}