-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
86 lines (86 loc) · 2.19 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
80
81
82
83
84
85
86
{
"name": "honeycomb-grid",
"version": "4.1.5",
"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": {
"types": "./dist/index.d.ts",
"default": "./dist/honeycomb-grid.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/honeycomb-grid.umd.js"
}
}
},
"scripts": {
"build": "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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@semantic-release/git": "10.0.1",
"@svgdotjs/svg.js": "3.2.0",
"@types/node": "~18.11.19",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"abstract-astar": "0.2.0",
"concurrently": "8.2.0",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"gitmoji-cli": "8.4.0",
"husky": "8.0.3",
"precise-commits": "1.0.2",
"prettier": "2.8.8",
"semantic-release": "19.0.5",
"semantic-release-gitmoji": "1.6.4",
"sitemap-ts": "1.4.0",
"tslib": "2.6.0",
"typedoc": "0.24.8",
"typedoc-plugin-markdown": "3.15.3",
"typescript": "5.1.6",
"vite": "4.4.4",
"vite-plugin-dts": "3.2.0",
"vitepress": "1.0.0-beta.5",
"vitest": "0.33.0",
"vue": "3.3.4"
},
"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"
}
}