-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "solid-hotkeys",
"version": "0.3.2",
"private": true,
"description": "",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"homepage": "https://alekangelov.github.io/solid-hotkeys",
"repository": {
"type": "git",
"url": "github.com:alekangelov/solid-hotkeys.git"
},
"husky": {
"hooks": {
"pre-commit": [
"lint",
"prettify"
]
}
},
"files": [
"dist/lib/**/*",
"dist/lib/*"
],
"exports": {
".": {
"import": "./dist/lib/index.es.js",
"require": "./dist/lib/index.umd.js"
}
},
"scripts": {
"build": "yarn workspace solid-hotkeys build",
"lint": "eslint . --ext .ts,.tsx",
"dev": "yarn workspace example dev",
"prettify": "prettier --write '**/*.{ts,tsx}'",
"prepare": "husky install",
"postbuild": "bundlesize",
"gen:badges": "ts-node ./tools/badges.ts",
"predeploy": "rm -rf dist/example && yarn workspace example build",
"deploy": "gh-pages -d dist/example"
},
"workspaces": [
"lib/*",
"example"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"badges": "^4.27.0",
"bundlesize": "^0.18.1",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-solid": "^0.6.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"ts-node": "^10.8.0",
"tslint": "^6.1.3"
}
}