-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.85 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.85 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
{
"name": "mimo-lang",
"version": "2.0.6",
"description": "A minimal prefix-notation programming language",
"keywords": [
"programming-language",
"prefix-notation",
"language",
"interpreter"
],
"author": "bethropolis",
"license": "MIT",
"main": "index.js",
"module": "index.js",
"type": "module",
"workspaces": [
"playground",
"extensions/*"
],
"bin": {
"mimo": "./bin/cli.js"
},
"scripts": {
"mimo": "bun bin/cli.js",
"dev": "bun test.js",
"build": "bun build.js",
"prebuild:mimo": "bun tools/stamp-version.js",
"build:mimo": "bun build ./bin/cli.js --compile --outfile mimo",
"build:all": "bun build.js && bun run ext:package && bun run web:build",
"convert": "bun tools/convert.js",
"test": "bun bin/cli.js test test/source",
"lint": "bun bin/cli.js lint test/source",
"lint:strict": "bun bin/cli.js lint --fail-on-warning test/source/all.mimo",
"format:check": "bun bin/cli.js fmt --check test/source",
"format:write": "bun bin/cli.js fmt --write test/source",
"check": "bun run lint:strict && bun run test",
"ext:validate": "bun run --cwd extensions/mimo-vscode validate",
"ext:test": "bun run --cwd extensions/mimo-vscode test",
"ext:check": "bun run --cwd extensions/mimo-vscode check",
"ext:package": "bun run --cwd extensions/mimo-vscode package",
"web:dev": "bun run --cwd playground dev --open",
"web:build": "bun run --cwd playground build",
"web:preview": "bun run --cwd playground preview",
"web:check": "bun run --cwd playground check"
},
"devDependencies": {
"@types/bun": "latest",
"esbuild": "^0.25.5"
},
"repository": {
"type": "git",
"url": "https://github.com/bethropolis/mimo.git"
},
"homepage": "https://bethropolis.github.io/mimo",
"bugs": {
"url": "https://github.com/bethropolis/mimo/issues"
}
}