forked from flauwekeul/honeycomb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.07 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "honeycomb-grid",
"version": "4.0.1",
"description": "Create hexagon grids easily",
"source": "src/index.ts",
"main": "dist/honeycomb-grid.umd.js",
"module": "dist/honeycomb-grid.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/honeycomb-grid.mjs",
"require": "./dist/honeycomb-grid.umd.js"
}
},
"scripts": {
"build": "tsc --project tsconfig.build.json && vite build",
"coverage": "vitest run --coverage",
"dev": "vite",
"docs:build": "typedoc && vitepress build docs",
"docs:dev": "concurrently -n typedoc,vitepress \"typedoc --watch\" \"vitepress dev docs --port 5174\"",
"docs:serve": "vitepress serve docs --port 5001",
"lint": "eslint . --fix",
"prepare": "husky install",
"preview": "vite preview",
"test": "vitest"
},
"author": "Abbe Keultjes <flauwekeul@gmail.com>",
"license": "MIT",
"devDependencies": {
"@semantic-release/git": "10.0.1",
"@svgdotjs/svg.js": "3.1.2",
"@types/node": "~16.11.68",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"abstract-astar": "0.2.0",
"concurrently": "7.6.0",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"gitmoji-cli": "7.0.2",
"husky": "8.0.2",
"precise-commits": "1.0.2",
"prettier": "2.8.1",
"semantic-release": "^19.0.5",
"semantic-release-gitmoji": "1.5.0",
"tslib": "2.4.1",
"typedoc": "0.23.22",
"typedoc-plugin-markdown": "3.14.0",
"typescript": "4.9.4",
"vite": "4.0.1",
"vite-plugin-dts": "1.7.1",
"vitepress": "1.0.0-alpha.31",
"vitest": "0.25.8",
"vue": "3.2.45"
},
"files": [
"dist",
"FUNDING.yml"
],
"repository": {
"type": "git",
"url": "https://github.com/flauwekeul/honeycomb.git"
},
"keywords": [
"grid",
"hex",
"hex-grid",
"hexagon",
"hexagon-grid",
"tiles",
"node"
],
"bugs": {
"url": "https://github.com/flauwekeul/honeycomb/issues"
},
"homepage": "http://abbekeultjes.nl/honeycomb",
"engines": {
"node": ">=16"
}
}