44 lines
868 B
JSON
44 lines
868 B
JSON
{
|
|
"name": "@cozy-games/mnswpr",
|
|
"version": "0.5.2",
|
|
"description": "Classic Minesweeper browser game",
|
|
"author": "Ayo",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ayo-run/mnswpr"
|
|
},
|
|
"homepage": "https://mnswpr.com",
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"release": "bumpp && node ../../scripts/release.js"
|
|
},
|
|
"main": "mnswpr.js",
|
|
"devDependencies": {
|
|
"@cozy-games/utils": "workspace:*"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"default": "./dist/mnswpr.js"
|
|
},
|
|
"./core": {
|
|
"types": "./core/index.d.ts",
|
|
"default": "./core/index.js"
|
|
},
|
|
"./dist/*": {
|
|
"default": "./dist/*"
|
|
},
|
|
"./*.js": {
|
|
"types": "./*.d.ts",
|
|
"default": "./*.js"
|
|
},
|
|
"./*": {
|
|
"default": "./*"
|
|
}
|
|
},
|
|
"files": [
|
|
"./*",
|
|
"./dist"
|
|
],
|
|
"license": "MIT"
|
|
}
|