stan-language-server 0.1.0-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "stan-language-server",
3
+ "version": "0.1.0-beta.13",
4
+ "description": "Language Server Protocol implementation for the Stan probabilistic programming language",
5
+ "main": "dist/server.js",
6
+ "module": "src/server.ts",
7
+ "type": "module",
8
+ "bin": {
9
+ "stan-language-server": "./dist/server.js"
10
+ },
11
+ "files": [
12
+ "dist/**/*",
13
+ "README.md",
14
+ "LICENSE",
15
+ "CHANGELOG.md"
16
+ ],
17
+ "keywords": [
18
+ "stan",
19
+ "language-server",
20
+ "lsp",
21
+ "probabilistic-programming",
22
+ "bayesian",
23
+ "statistics"
24
+ ],
25
+ "author": "Jens Kouros <jens.kouros@posteo.de>",
26
+ "license": "MIT",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/tomatitito/stan-language-server.git"
30
+ },
31
+ "bugs": {
32
+ "url": "https://github.com/tomatitito/stan-language-server/issues"
33
+ },
34
+ "homepage": "https://github.com/tomatitito/stan-language-server#readme",
35
+ "engines": {
36
+ "node": ">=18.0.0"
37
+ },
38
+ "scripts": {
39
+ "build": "bun build src/server.ts --outdir dist --target node --format esm",
40
+ "build:binary": "bun build src/server.ts --compile --outfile dist/stan-language-server",
41
+ "prepublishOnly": "bun run build",
42
+ "version:set": "bun run scripts/set-version.ts",
43
+ "publish:npm": "npm publish --access public --provenance",
44
+ "publish:local": "bun run build && npm publish --access public",
45
+ "publish:alpha": "bun run build && npm publish --access public --tag alpha",
46
+ "publish:beta": "bun run build && npm publish --access public --tag beta",
47
+ "publish:rc": "bun run build && npm publish --access public --tag rc",
48
+ "lint": "eslint src --ext .ts",
49
+ "lint:fix": "eslint src --ext .ts --fix",
50
+ "typecheck": "tsc --noEmit",
51
+ "check": "bun run lint && bun run typecheck",
52
+ "test": "bun test",
53
+ "dev": "bun run src/server.ts"
54
+ },
55
+ "devDependencies": {
56
+ "@types/bun": "latest",
57
+ "@types/node": "24.3.1",
58
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
59
+ "@typescript-eslint/parser": "^8.0.0",
60
+ "eslint": "^9.0.0",
61
+ "typescript": "5.9.2"
62
+ },
63
+ "dependencies": {
64
+ "trie-search": "2.2.0",
65
+ "vscode-languageserver": "9.0.1",
66
+ "vscode-languageserver-textdocument": "1.0.12",
67
+ "vscode-uri": "3.1.0"
68
+ }
69
+ }