Skip to content

Commit 4c59796

Browse files
committed
🎂 Project initialized!
1 parent b679ec9 commit 4c59796

File tree

13 files changed

+3399
-0
lines changed

13 files changed

+3399
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "mini-go",
3+
"version": "1.0.0",
4+
"description": "A Go compiler that uses gaia-frontend-wasm32",
5+
"main": "dist/index.js",
6+
"scripts": {
7+
"build": "tsc",
8+
"start": "node dist/index.js",
9+
"test": "jest",
10+
"test:go": "node test/run-tests.js",
11+
"dev": "ts-node src/index.ts",
12+
"compile:hello": "npm run build && node dist/index.js test/hello.go",
13+
"compile:struct": "npm run build && node dist/index.js test/struct.go",
14+
"compile:basic": "npm run build && node dist/index.js test/basic.go"
15+
},
16+
"keywords": [
17+
"go",
18+
"golang",
19+
"compiler",
20+
"gaia",
21+
"wasm32"
22+
],
23+
"author": "",
24+
"license": "MIT",
25+
"dependencies": {
26+
},
27+
"devDependencies": {
28+
"@types/node": "^18.0.0",
29+
"typescript": "^5.0.0",
30+
"ts-node": "^10.9.0",
31+
"jest": "^29.0.0",
32+
"@types/jest": "^29.0.0"
33+
}
34+
}

0 commit comments

Comments
 (0)