-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 KB
/
package.json
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
{
"name": "jsc",
"version": "0.2.0",
"description": "JavaScript compiler that creates executable using C++ compiler",
"repository": {
"type": "git",
"url": "git+https://github.com/MaxCharlington/jsc.git"
},
"author": "MaxCharlington",
"license": "MIT",
"bugs": {
"url": "https://github.com/MaxCharlington/jsc/issues"
},
"homepage": "https://github.com/MaxCharlington/jsc#readme",
"type": "module",
"bin": {
"jsc": "scripts/jsc_proxy.sh"
},
"files": [
"dist/jsc",
"src/library/",
"deps/helpers/"
],
"scripts": {
"preinstall": "g++-13 --version && bun --version && esbuild --version",
"test": "scripts/run_tests.sh",
"lint": "tsc; eslint --ext .js,.ts .",
"prebuild": "rm -rf dist && mkdir dist",
"build": "bun build index.ts --compile --minify --outfile=dist/jsc"
},
"dependencies": {
"clang-format": "^1.8.0"
},
"engines": {
"node": ">=18.17.1",
"bun": ">=1.0.2"
},
"os": [
"linux"
],
"devDependencies": {
"@types/estree": "^1.0.0",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"acorn": "^8.8.1",
"acorn-walk": "^8.2.0",
"commander": "^9.4.1",
"eslint": "^8.35.0",
"typescript": "^5.0.2"
}
}