-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "grid-navigator",
"version": "1.3.4",
"license": "UNLICENSED",
"description": "no-fuss accessible keyboard navigation handling to a grid component",
"author": "Andrew Peterson",
"homepage": "https://github.com/ndp-software/grid-navigator",
"bugs": "https://github.com/ndp-software/grid-navigator/issues",
"keywords": [
"grid",
"accessibility",
"keyboard",
"navigation",
"arrow keys"
],
"scripts": {
"build": "yarn clean && yarn build-lib && yarn ts-types",
"build-lib": "./node_modules/.bin/esbuild --outfile=./dist/index.js --bundle --sourcemap --minify --format=esm --target=esnext src/index.ts",
"clean": "rm -f ./dist/* ./types/*",
"lint": "eslint --fix --ext=.ts src",
"test": "node --test --loader tsx src/*spec.ts",
"ts-types": "tsc --emitDeclarationOnly --outDir types --declaration src/index.ts && cp src/base-types.d.ts types/",
"prepublishOnly": "yarn build"
},
"type": "module",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"files": [
"README.md",
"dist",
"types"
],
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"esbuild": "*",
"eslint": "*",
"keyboard-event-to-string": "*",
"tsx": "*",
"typescript": "*"
}
}