-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.01 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.01 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
{
"name": "twilight-lang",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"version": "2.0.0",
"author": "EvanZhouDev",
"license": "GPL-3.0",
"description": "Twilight is a modern lambda calculus runtime and REPL.",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EvanZhouDev/twilight.git"
},
"homepage": "https://github.com/EvanZhouDev/twilight",
"keywords": [
"lambda",
"calculus"
],
"scripts": {
"format": "biome format . --write",
"lint": "biome lint .",
"fix": "biome check --apply .",
"fix-unsafe": "biome check --apply-unsafe .",
"build-binary": "bun build ./cli/index.ts --compile --outfile ./bin/twilight",
"build": "tsup"
},
"dependencies": {
"@types/node": "^22.10.2",
"chalk": "^5.4.0",
"fast-levenshtein": "^3.0.0"
},
"bin": {
"twilight": "bin/twilight"
}
}