forked from allmaps/allmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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
{
"name": "@allmaps/render",
"version": "1.0.0-beta.28",
"author": {
"name": "Bert Spaan",
"email": "[email protected]",
"url": "https://bertspaan.nl"
},
"description": "Render functions for WebGL and image buffers",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"main": "./dist/index.js",
"unpkg": "./dist/index.cjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/allmaps/allmaps.git",
"directory": "packages/render"
},
"scripts": {
"dev": "vite",
"watch": "vite build --watch",
"build": "vite build",
"preview": "vite preview",
"build:types": "tsc --declaration --emitDeclarationOnly --esModuleInterop",
"test": "mocha && eslint dist test",
"documentation": "documentation readme ./dist/index.js --section=API"
},
"homepage": "https://allmaps.org",
"keywords": [
"allmaps",
"georeference",
"map"
],
"dependencies": {
"@allmaps/annotation": "^1.0.0-beta.12",
"@allmaps/id": "^1.0.0-beta.14",
"@allmaps/iiif-parser": "^1.0.0-beta.22",
"@allmaps/stdlib": "^1.0.0-beta.7",
"@allmaps/transform": "^1.0.0-beta.12",
"earcut": "^2.2.3",
"lodash-es": "^4.17.21",
"potpack": "^1.0.1",
"rbush": "^3.0.1"
},
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/earcut": "^2.1.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.14.2",
"@types/rbush": "^3.0.0",
"chai": "^4.3.6",
"documentation": "^14.0.0",
"eslint": "^8.35.0",
"mocha": "^8.4.0",
"typescript": "^4.9.5",
"vite": "^4.0.0"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
}
}