-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 911 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 911 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
38
39
{
"name": "2048-game",
"version": "1.0.0",
"description": "A modern implementation of the classic 2048 game",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"asbuild:debug": "asc assembly/index.ts --target debug",
"asbuild:release": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:debug && npm run asbuild:release"
},
"keywords": [
"game",
"puzzle",
"2048"
],
"author": "",
"license": "GPL-3.0",
"dependencies": {
"@supabase/supabase-js": "^2.39.0",
"animejs": "^3.2.1",
"js-confetti": "^0.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"assemblyscript": "^0.27.2",
"vite": "^5.0.0"
},
"type": "module",
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
}
}