-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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
{
"name": "rapid-sdk",
"version": "1.0.0-pre.4",
"description": "Map editing made easy",
"homepage": "https://github.com/rapideditor/rapid-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rapideditor/rapid-sdk.git"
},
"license": "ISC",
"contributors": [
"Ben Clark <clarkben@fb.com> (https://github.com/bonkles)",
"Bryan Housel <bhousel@gmail.com> (https://github.com/bhousel)",
"Danny Krause (https://github.com/vanreece)",
"Milos Brzakovic <mbrzakovic@microsoft.com> (https://github.com/mbrzakovic)"
],
"keywords": [
"map",
"editor"
],
"type": "module",
"workspaces": [
"packages/math",
"packages/util"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/geojson": "^7946.0.16",
"@types/bun": "^1.3.11",
"eslint": "^10.1.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"scripts": {
"all": "bun run --sequential clean build test",
"build": "bun --parallel --workspaces run build",
"clean": "bun --parallel --workspaces run clean",
"docs": "typedoc",
"lint": "bun --parallel --workspaces run lint",
"test": "bun --parallel --workspaces run test"
},
"private": true,
"engines": {
"bun": ">=1.3.10"
}
}