forked from source-academy/pie-slang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.87 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@sourceacademy/pie-slang",
"version": "1.0.0",
"description": "Implementation of Pie in TypeScript, following the book: The Little Typer",
"keywords": [
"Pie",
"interpreter",
"compiler",
"Source",
"The Little Typer"
],
"author": {
"name": "Source Academy",
"url": "https://github.com/source-academy/"
},
"license": "Apache-2.0",
"main": "dist/index.ts",
"files": [
"dist/index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/source-academy/pie-slang.git"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/highlight": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^10.0.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.4",
"@types/estree": "^1.0.6",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.10",
"babel-jest": "^30.2.0",
"esbuild": "^0.28.0",
"eslint": "^10.0.2",
"eslint-plugin-react": "^7.37.2",
"globals": "^17.1.0",
"jest": "^30.2.0",
"monaco-editor": "^0.55.1",
"monaco-languageclient": "^10.2.0",
"resolve-cwd": "^3.0.0",
"rollup": "^4.46.2",
"to-fast-properties": "^4.0.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.15.0",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.5"
},
"dependencies": {
"@google/genai": "^1.25.0",
"@google/generative-ai": "^0.24.1",
"conductor": "https://github.com/source-academy/conductor.git#0.4.0",
"dotenv": "^17.2.3",
"js-base64": "^3.7.8"
},
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"type": "module"
}