-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "herb-language-server",
"description": "Placeholder package to reserve the herb-language-server name on NPM; use @herb-tools/language-server instead.",
"version": "0.9.1",
"author": "Marco Roth",
"license": "MIT",
"engines": {
"node": "*"
},
"homepage": "https://herb-tools.dev",
"bugs": "https://github.com/marcoroth/herb/issues/new?title=Package%20%60herb-language-server%60:%20",
"repository": {
"type": "git",
"url": "git+https://github.com/marcoroth/herb.git",
"directory": "javascript/packages/herb-language-server"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "yarn clean && tsc -b && rollup -c",
"dev": "rollup -c -w",
"watch": "tsc -b -w",
"clean": "rimraf dist",
"test": "echo 'TODO: add tests'",
"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"
}
},
"bin": {
"herb-language-server": "bin/herb-language-server"
},
"files": [
"package.json",
"README.md",
"src/",
"bin/",
"dist/"
],
"dependencies": {
"@herb-tools/language-server": "0.9.1"
}
}