-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 KB
/
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
36
37
38
39
40
41
42
43
44
{
"name": "keyboardist",
"version": "2.0.2",
"author": "Armando Sosa <arm.sosa@gmail.com>",
"license": "MIT",
"description": "simple global keyboard manager",
"source": "src/index.ts",
"types": "src/index.d.ts",
"main": "dist/keyboardist.js",
"module": "dist/keyboardist.module.js",
"unpkg": "dist/keyboardist.umd.js",
"scripts": {
"test": "jest",
"favicon": "cpx \"src/docs/favicon.*\" \"docs\"",
"clean": "rm -rf dist",
"clean-after": "rm -rf dist/docs && mv dist/lib/*.d.ts dist && rm -rf dist/lib ",
"build": "npm run clean && microbundle",
"prepublish": "npm run build",
"postpublish": "git push origin --follow-tags",
"build:docs": "vite build demo-src --outDir ../demo",
"dev": "vite demo-src --port 8000"
},
"keywords": [
"keyboard",
"shortcuts"
],
"homepage": "https://github.com/soska/keyboardist",
"repository": {
"type": "git",
"url": "git@github.com:soska/keyboardist.git"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^23.1.0",
"microbundle": "^0.13.3",
"prismjs": "^1.23.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4",
"vite": "^2.3.8"
},
"dependencies": {
"@jiveworld/minibus": "^1.0.1"
}
}