-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "rapid-sdk",
"version": "1.0.0-pre.3",
"private": true,
"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 <[email protected]> (https://github.com/bonkles)",
"Bryan Housel <[email protected]> (https://github.com/bhousel)",
"Danny Krause (https://github.com/vanreece)",
"Milos Brzakovic <[email protected]> (https://github.com/mbrzakovic)"
],
"keywords": [
"map",
"editor"
],
"type": "module",
"workspaces": [
"packages/math",
"packages/util"
],
"devDependencies": {
"@types/geojson": "^7946.0.15",
"@types/node": "^22.10.7",
"c8": "^10.1.3",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
},
"scripts": {
"all": "run-s clean build test",
"build": "npm run build --workspaces",
"build:js": "npm run build:js --workspaces",
"build:types": "npm run build:types --workspaces",
"clean": "npm run clean --workspaces",
"docs": "typedoc",
"lint": "npm run lint --workspaces",
"test": "npm run test --workspaces"
},
"engines": {
"node": ">=18.18"
}
}