-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.56 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.56 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@sourceacademy/py-slang",
"packageManager": "yarn@4.13.0+sha512.5c20ba010c99815433e5c8453112165e673f1c7948d8d2b267f4b5e52097538658388ebc9f9580656d9b75c5cc996f990f611f99304a2197d4c56d21eea370e7",
"version": "1.0.2",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"description": "",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"regen": "tsx src/generate.ts && prettier --write src/ast-types.ts",
"compile-grammar": "nearleyc src/parser/python.ne | LC_ALL=C sed -f src/parser/python-grammar.ts.sed | prettier --stdin-filepath src/parser/python-grammar.ts > src/parser/python-grammar.ts && eslint --fix src/parser/python-grammar.ts",
"build": "bash scripts/autocomplete.sh && yarn build:repl && tsx scripts/build.ts",
"build:repl": "rollup -c rollup.repl.mjs",
"build:lib": "rollup -c rollup.lib.mjs",
"dev": "bash scripts/autocomplete.sh && tsx scripts/build.ts --watch",
"repl": "node dist/repl.cjs",
"jsdoc": "./scripts/jsdoc.sh prepare",
"jsdoc:run": "./scripts/jsdoc.sh run",
"jsdoc:clean": "./scripts/jsdoc.sh clean",
"test": "jest",
"test-coverage": "jest --coverage",
"test:pyodide": "node --experimental-vm-modules node_modules/.bin/jest --testPathIgnorePatterns=\"/node_modules/|/dist/\" --testPathPattern=\"[Pp]yodide\"",
"pynter:report": "tsx scripts/pynter-parity-report.ts",
"lint": "eslint --concurrency=auto src",
"format": "prettier --write \"**/*.{ts,tsx,json,js,mjs,mts}\"",
"format:ci": "prettier --list-different \"**/*.{ts,tsx,json,js,mjs,mts}\"",
"wasm": "tsx src/engines/wasm/runFile.ts",
"prepublishOnly": "yarn build:lib && yarn build:repl"
},
"keywords": [
"Python",
"Source",
"SICP"
],
"author": {
"name": "Source Academy",
"url": "https://github.com/source-academy/"
},
"license": "Apache-2.0",
"devDependencies": {
"@inquirer/prompts": "^8.3.2",
"@lezer/python": "^1.1.18",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-wasm": "^6.2.2",
"@types/fast-levenshtein": "^0.0.4",
"@types/jest": "^29.5.14",
"@types/moo": "^0.5.10",
"@types/nearley": "^2.11.5",
"@types/node": "^18.19.84",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"jest": "^29.7.0",
"jsdoc": "^4.0.4",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"ts-jest": "^29.0.5",
"tslib": "^2.8.1",
"tsx": "^4.19.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"@sourceacademy/common-autocomplete": "^0.0.1",
"@sourceacademy/common-cse-machine": "^0.3.0",
"@sourceacademy/common-data-visualizer": "^0.0.1",
"@sourceacademy/common-stepper": "^0.0.1",
"@sourceacademy/conductor": "^0.8.3",
"@sourceacademy/pynter-wasm": "^0.2.0",
"@sourceacademy/runner-autocomplete": "^0.0.2",
"@sourceacademy/runner-cse-machine": "^3.0.0",
"@sourceacademy/runner-data-visualizer": "^0.0.1",
"@sourceacademy/runner-module-loader": "^0.0.1",
"@sourceacademy/runner-stepper": "^0.0.1",
"@sourceacademy/wasm-util": "^1.0.6",
"commander": "^14.0.3",
"fast-levenshtein": "^3.0.0",
"mathjs": "^15.2.0",
"moo": "^0.5.2",
"nearley": "^2.20.1",
"pyodide": "^0.29.3",
"wabt": "^1.0.37"
}
}