-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "@k5s/lander",
"version": "1.0.8",
"description": "A lunar lander game where you write code to control the lander and safely land on the moon.",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc --noEmit && vite build",
"preview": "vite preview --port 3000",
"start": "npm run dev",
"test": "vitest run",
"test:watch": "vitest",
"sim": "vitest run --config vite.sim.config.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"prepublishOnly": "npm run build",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major"
},
"bin": {
"lander": "bin/lander.js"
},
"type": "module",
"files": [
"bin/",
"docs/"
],
"publishConfig": {
"access": "public"
},
"author": "Austin Kurpuis <a@kurpuis.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/imaustink/lander.git"
},
"dependencies": {
"@playwright/mcp": "^0.0.70",
"monaco-editor": "^0.36.1"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vitest": "^4.1.4"
}
}