-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 957 Bytes
/
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
{
"name": "magic-the-compiler",
"module": "src/compile.ts",
"description": "compilador typescript utilizando Recusividade e LookAhead",
"devDependencies": {
"@types/inquirer": "^9.0.3",
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"start": "bun run src/compile.ts",
"terminal": "bun run src/terminal.ts",
"test:lexer": "bun run test/lexer/index.ts",
"test:parser": "bun run test/parser/index.ts",
"test:interpreter": "bun run test/interpreter/index.ts",
"test:variables": "bun run test/variables/index.ts",
"test:objects": "bun run test/objects/index.ts",
"test:user-functions": "bun run test/user-defined-functions/index.ts",
"test:keywords": "bun run test/keywords/index.ts",
"test:functions": "bun run test/native-functions/index.ts"
},
"type": "module",
"dependencies": {
"@inquirer/editor": "^1.2.12",
"inquirer": "^9.2.11"
}
}