vue-mac-keyboard
Version:
Macbook computer keyboard style for VueJS component.
80 lines • 2.05 kB
JSON
{
"name": "vue-mac-keyboard",
"type": "module",
"version": "0.1.1",
"description": "Macbook computer keyboard style for VueJS component.",
"keywords": [
"keyboard",
"macbook",
"vue"
],
"license": "MIT",
"author": {
"name": "ntnyq",
"email": "ntnyq13@gmail.com",
"url": "https://ntnyq.com"
},
"repository": "ntnyq/vue-mac-keyboard",
"exports": {
"./package.json": "./package.json",
"./style": "./dist/style.css",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"vue": "^3.5.13"
},
"devDependencies": {
"@ntnyq/eslint-config": "^3.8.1",
"@ntnyq/prettier-config": "^1.22.0",
"@types/node": "^22.10.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"bumpp": "^9.8.1",
"eslint": "^9.16.0",
"happy-dom": "^15.11.7",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"npm-run-all2": "^7.0.1",
"prettier": "^3.4.2",
"sass": "^1.82.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"nano-staged": {
"*.{js,ts,cjs,mjs,vue,md,yml,yaml,json}": "eslint --fix"
},
"scripts": {
"build": "tsup",
"build:style": "sass src/style.scss dist/style.css --no-source-map --style=compressed",
"coverage": "vitest --coverage",
"dev": "tsup --watch src",
"dev:style": "sass src/style.scss dist/style.css --no-source-map --watch --style=compressed",
"lint": "eslint .",
"play": "pnpm -C playground run dev",
"play:build": "pnpm -C playground run build",
"release": "bumpp && pnpm publish",
"test": "vitest",
"typecheck": "tsc --noEmit"
}
}