-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.47 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.47 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
{
"name": "exojs-examples",
"description": "Playground for ExoJS examples.",
"version": "2.2.0",
"type": "module",
"license": "MIT",
"author": "Dieter Giesler",
"homepage": "https://exoridus.github.io/ExoJS-examples/",
"repository": {
"type": "git",
"url": "git@github.com:Exoridus/ExoJS-examples.git"
},
"scripts": {
"vendor:sync:exo": "tsx scripts/sync-exo-vendor.ts",
"vendor:sync:monaco": "tsx scripts/sync-monaco-vendor.ts",
"vendor:sync:stats": "tsx scripts/sync-stats-vendor.ts",
"vendor:sync": "npm run vendor:sync:exo && npm run vendor:sync:monaco && npm run vendor:sync:stats",
"assets:sync:input-prompts": "tsx scripts/sync-kenney-input-prompts.ts",
"dev": "npm run vendor:sync && astro dev",
"build": "npm run vendor:sync && astro build",
"preview": "astro preview",
"test:dist": "npm run build && node --test tests/dist-open.smoke.test.mjs",
"check-ts": "astro check && tsc --noEmit --pretty",
"deploy": "git subtree push --prefix dist origin gh-pages"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/lit": "^4.3.0",
"@types/node": "^22.19.17",
"astro": "^6.1.7",
"lit": "^3.3.2",
"playwright": "^1.59.1",
"sass": "^1.99.0",
"stats.js": "^0.17.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"exojs": "file:../exojs",
"monaco-editor": "^0.55.1"
}
}