forked from enspirit/elo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 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
{
"name": "@contextvm/elo",
"version": "0.10.4",
"description": "A small expression language that compiles to JavaScript (JS-only fork)",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "bun run test:unit",
"test:unit": "bun test test/unit/",
"test:watch": "tsc --watch & bun test --watch test/unit/",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"format": "prettier --write .",
"release": "bun run build && bun publish"
},
"keywords": [
"compiler",
"expression",
"multi-target"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/enspirit/elo.git"
},
"homepage": "https://elo-lang.org",
"bugs": {
"url": "https://github.com/enspirit/elo/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"luxon": "^3.7.2",
"prettier": "^3.8.1"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.40.0",
"@hotwired/stimulus": "^3.2.2",
"@lezer/highlight": "^1.2.3",
"@types/luxon": "^3.7.1",
"@types/node": "^20.19.37",
"@types/pg": "^8.20.0",
"codemirror": "^6.0.2",
"esbuild": "^0.27.4",
"pg": "^8.20.0",
"typescript": "^5.9.3"
}
}