-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1007 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1007 Bytes
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
{
"name": "lightbot",
"version": "1.3.5",
"description": "Lightbot is an educational game about programming designed for introductory courses to logical thinking.",
"private": true,
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build --config vite.offline.config.js",
"build:web": "vite build --outDir dist-web",
"preview": "vite preview",
"clean": "rimraf dist dist-web",
"lint": "eslint ."
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"daisyui": "^5.0.0",
"eslint": "10.0.2",
"rimraf": "^6.1.2",
"tailwindcss": "^4.0.0",
"vite": "^7.3.2",
"vite-plugin-singlefile": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haan/Lightbot.git"
},
"bugs": {
"url": "https://github.com/haan/Lightbot/issues"
},
"homepage": "https://github.com/haan/Lightbot#readme",
"dependencies": {
"i18next": "^25.5.2",
"sortablejs": "^1.15.6",
"theme-change": "^2.5.0"
}
}