-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.79 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
{
"name": "pyro",
"version": "2.0.0",
"description": "A browser-based VPython editor with 3D visualization using GlowScript",
"type": "module",
"engines": {
"node": ">=22.12.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"serve": "vite",
"check": "biome check .",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenPhysics/pyro.git"
},
"keywords": [
"vpython",
"glowscript",
"physics",
"3d",
"visualization",
"education",
"simulation",
"editor",
"typescript"
],
"author": "OpenPhysics",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/OpenPhysics/pyro/issues"
},
"homepage": "https://openphysics.github.io/pyro",
"devDependencies": {
"@biomejs/biome": "^2.5.8",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"typescript": "^7.0.2",
"vite": "^8.2.1"
},
"dependencies": {
"@astral-sh/ruff-wasm-web": "^0.16.1",
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lint": "^6.9.7",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.8",
"@replit/codemirror-indentation-markers": "^6.5.3",
"codemirror": "^6.0.2",
"dompurify": "^3.4.13",
"katex": "^0.18.1",
"marked": "^18.0.9",
"rainbowbrackets": "^2.0.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css}": [
"biome check --write --no-errors-on-unmatched"
],
"*.{json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
},
"overrides": {
"postcss": "^8.5.10"
}
}