-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.13 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
{
"name": "@begoon/easyc",
"version": "0.1.3",
"description": "Compiler for the Easy language (Wetherell's 'Etudes for Programmers', 1978), emitting C",
"keywords": [
"easy",
"compiler",
"etudes-for-programmers",
"wetherell",
"educational",
"c"
],
"author": "Alexander Demin",
"license": "MIT",
"homepage": "https://github.com/begoon/easy",
"repository": {
"type": "git",
"url": "git+https://github.com/begoon/easy.git"
},
"bugs": {
"url": "https://github.com/begoon/easy/issues"
},
"type": "module",
"bin": {
"easyc": "dist/easyc.js"
},
"files": [
"dist",
"runtime.c",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun build easyc.ts --target=node --outfile=dist/easyc.js --minify && chmod +x dist/easyc.js",
"build:playground": "printf 'export const BUILD_TIME = \"%s\";\\n' \"$(date '+%Y-%m-%d %H:%M:%S')\" > docs/build-info.ts && bun build docs/playground.ts --target=browser --format=esm --outfile=docs/playground.js",
"prepublishOnly": "SKIP_RUN=1 bun run test.ts && bun run build"
},
"dependencies": {
"@types/node": "^24.5.2"
}
}