-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.5 KB
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
{
"name": "screengrid",
"version": "2.0.1",
"description": "A GPU/Canvas hybrid Screen-Space Grid Aggregation library for MapLibre GL JS with advanced glyph drawing capabilities",
"main": "dist/screengrid.cjs",
"module": "dist/screengrid.mjs",
"unpkg": "dist/screengrid.umd.min.js",
"jsdelivr": "dist/screengrid.umd.min.js",
"type": "module",
"scripts": {
"start": "npx http-server -p 8000",
"dev": "npx http-server -p 8000",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "echo 'Open examples/simple-test.html in your browser'"
},
"keywords": [
"maplibre",
"visualization",
"grid",
"aggregation",
"glyph",
"canvas",
"maps"
],
"author": "Dany Laksono",
"license": "MIT",
"peerDependencies": {
"maplibre-gl": "^4.0.0"
},
"files": [
"dist/",
"src/",
"examples/",
"docs/",
"README.md"
],
"exports": {
".": {
"import": "./dist/screengrid.mjs",
"require": "./dist/screengrid.cjs",
"default": "./dist/screengrid.mjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/danylaksono/screengrid.git"
},
"bugs": {
"url": "https://github.com/danylaksono/screengrid/issues"
},
"homepage": "https://github.com/danylaksono/screengrid#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.2",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.52.4"
}
}