-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.05 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
{
"name": "koin.js",
"version": "1.3.4",
"description": "The drop-in React component for browser-based retro game emulation. 28 systems. Cloud saves. Zero backend required.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./systems": {
"types": "./dist/systems.d.ts",
"import": "./dist/systems.mjs",
"require": "./dist/systems.js"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/muditjuneja/koin"
},
"style": "dist/styles.css",
"scripts": {
"build": "tsup && tailwindcss -i ./src/styles.css -o ./dist/styles.css",
"build:element": "tsup --config tsup.element.config.ts",
"dev": "tsup --watch",
"lint": "eslint src",
"postinstall": "node -e \"if (require('fs').existsSync('node_modules/nostalgist')) require('child_process').execSync('npx patch-package', {stdio: 'inherit'})\""
},
"keywords": [
"retro",
"emulator",
"nostalgist",
"react",
"game",
"koin",
"koin.js"
],
"author": "Mudit Juneja",
"license": "MIT",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"clsx": "^2.0.0",
"framer-motion": "^11.0.0",
"lucide-react": "^0.300.0",
"nostalgist": "^0.21.0",
"patch-package": "^8.0.1",
"tailwind-merge": "^2.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"autoprefixer": "^10.0.0",
"postcss": "^8.0.0",
"tailwindcss": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
}
}