generated from remarkablegames/kaplay-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 KB
/
package.json
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
{
"name": "code-arcade",
"version": "1.2.2",
"description": "Learn how to program with Code Arcade.",
"author": "Mark <mark@remarkablemark.org>",
"scripts": {
"build": "npm run clean && vite build",
"bundle": "scripts/bundle.sh",
"clean": "rm -rf dist",
"increment-levels": "tsx scripts/increment-levels.ts",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:tsc": "tsc --noEmit",
"prepare": "husky",
"preview": "vite preview",
"start": "vite --open"
},
"homepage": "https://remarkablegames.org/code-arcade/",
"dependencies": {
"@codemirror/lang-javascript": "6.2.2",
"codemirror": "6.0.1"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/compat": "1.2.5",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.19.0",
"@tailwindcss/postcss": "4.0.0",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"eslint": "9.19.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"postcss": "8.5.1",
"prettier": "3.4.2",
"tailwindcss": "4.0.0",
"tsx": "4.19.2",
"typescript": "5.7.3",
"vite": "6.0.11",
"vite-plugin-html": "3.2.2",
"yargs": "17.7.2"
},
"private": true,
"license": "MIT"
}