-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.12 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.12 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
{
"name": "browser-code-runner",
"version": "1.0.2",
"description": "A unified API to execute different programming languages in the browser using web workers",
"main": "dist/index.js",
"module": "dist/browser-code-runner.es.js",
"unpkg": "dist/browser-code-runner.umd.js",
"jsdelivr": "dist/browser-code-runner.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc && node scripts/build.js",
"build:vite": "vite build",
"build:all": "npm run build && npm run build:vite",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:build": "node scripts/test-build.js",
"build:demo": "node scripts/build-demo.js",
"demo": "npx http-server demo -p 8080 -o",
"demo:build": "npm run build:demo && npm run demo",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build:all"
},
"keywords": [
"code-runner",
"web-workers",
"python",
"javascript",
"lua",
"browser",
"pyodide",
"fengari"
],
"author": "Honey Sharma <honey.singhroi@gmail.com>",
"license": "MIT",
"dependencies": {
"fengari": "^0.1.4",
"monaco-editor": "^0.45.0",
"pyodide": "^0.25.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.5.1",
"ts-jest": "^29.1.0",
"typescript": "^4.1.2",
"vite": "^6.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/honeycoder96/browser-code-runner.git"
},
"bugs": {
"url": "https://github.com/honeycoder96/browser-code-runner/issues"
},
"homepage": "https://github.com/honeycoder96/browser-code-runner#readme",
"demo": "https://honeycoder96.github.io/browser-code-runner/",
"engines": {
"node": ">=16.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}