-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 925 Bytes
/
package.json
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
{
"name": "keyshorts",
"version": "0.0.4",
"type": "module",
"homepage": "https://github.com/WayneWu98/keyshorts",
"description": "keyshorts helps you add keyboard shortcuts to your website quickly and easily!!!",
"keywords": ["keyboard", "shortcuts"],"repository": {
"type": "git",
"url": "https://github.com/WayneWu98/keyshorts.git"
},
"author": "Wayne Wu <wayne-wu@outlook.com> (https://wayne-wu.com/)",
"license": "MIT",
"types": "./dist/main.d.ts",
"files": [
"dist"
],
"main": "./dist/keyshorts.umd.js",
"module": "./dist/keyshorts.es.js",
"exports": {
".": {
"import": "./dist/keyshorts.es.js",
"require": "./dist/keyshorts.umd.js"
}
},
"scripts": {
"dev": "vite .",
"build": "tsc && vite build"
},
"devDependencies": {
"@types/node": "^18.11.18",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1"
}
}