-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (94 loc) · 2.74 KB
/
package.json
File metadata and controls
95 lines (94 loc) · 2.74 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "joymap",
"version": "2.3.0",
"type": "module",
"description": "A Gamepad API wrapper and mapping tool.",
"main": "./bin/src/index.js",
"types": "./bin/src/index.d.ts",
"files": [
"bin",
"src"
],
"scripts": {
"dev": "vite",
"format": "prettier \"**/*.{js,jsx,json,tsx,ts}\" --write",
"lint": "eslint .",
"type-check": "tsc -p tsconfig.json",
"build": "pnpm clean && pnpm build-lib && pnpm build-min && pnpm build-docs",
"clean": "del-cli -f docs/* && del-cli -f bin/*",
"build-lib": "vite build --config vite.config.lib.ts",
"build-min": "esbuild bin/src/index.js --bundle --format=iife --global-name=Joymap --outfile=bin/joymap.min.js --minify",
"build-docs": "vite build --config vite.config.docs.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"author": "Diego Doumecq",
"tags": [
"gamepad",
"joystick"
],
"keywords": [
"gamepad",
"joystick"
],
"homepage": "https://github.com/diegodoumecq/joymap",
"repository": {
"type": "git",
"url": "https://github.com/diegodoumecq/joymap"
},
"license": "MIT",
"dependencies": {
"fast-memoize": "^2.5.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@ckeditor/ckeditor5-react": "^9.0.0",
"@eslint/js": "^10.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@radix-ui/react-tooltip": "^1.2.8",
"@stackblitz/sdk": "^1.11.0",
"@tailwindcss/postcss": "^4.2.0",
"@tailwindcss/vite": "^4.2.1",
"@types/color-hash": "^1.0.5",
"@types/lodash": "^4.17.24",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"ckeditor5": "43.3.1",
"color-hash": "^2.0.2",
"del-cli": "^6.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.0",
"eslint-plugin-react": "^7.36.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^17.4.0",
"jsdom": "^29.0.1",
"lorem-ipsum": "^2.0.4",
"marked": "^14.0.0",
"phaser": "^3.85.0",
"postcss": "^8.5",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-iframe": "^1.8.5",
"react-router-dom": "^7.13.1",
"regenerator-runtime": "^0.14.1",
"rxjs": "^7.8.1",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.0",
"tinycolor2": "^1.6.0",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.0.0",
"vitest": "^2.1.9"
}
}