-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
75 lines (75 loc) · 2.4 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
{
"name": "@planet/maps",
"version": "11.1.0",
"description": "Declarative mapping components for React",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/planetlabs/maps.git"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "npm-run-all test:*",
"test:lib": "vitest run --root ./tests/lib",
"test:rendering": "playwright test --config=tests/rendering/playwright.config.js",
"test:unit": "vitest run --root ./tests/unit",
"test:types": "npx tsc --noEmit",
"start": "astro dev --root ./site",
"generate": "node tools/generate.js && npm run lint -- --fix",
"start:rendering": "vite serve --config=tests/rendering/vite.config.js",
"build": "npm-run-all build:*",
"build:site": "astro build --root ./site",
"build:types": "npm run clean:types && npx tsc -declaration --declarationMap --emitDeclarationOnly --noEmit false",
"clean": "npm-run-all clean:*",
"clean:types": "find . \\( -name '*.d.ts' -o -name '*.d.ts.map' \\) ! -path './node_modules/*' ! -path './site/src/env.d.ts' -delete",
"clean:generated": "node tools/clean.js"
},
"license": "Apache-2.0",
"peerDependencies": {
"ol": "*",
"ol-mapbox-style": "*",
"react": ">=19"
},
"devDependencies": {
"@astrojs/mdx": "^4.0.3",
"@astrojs/react": "^4.0.0",
"@octokit/rest": "^21.0.0",
"@playwright/test": "^1.25.2",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-reconciler": "^0.28.9",
"@vitest/browser": "^3.0.7",
"astro": "^5.1.1",
"es-main": "^1.2.0",
"eslint": "^9.20.1",
"eslint-config-planet": "^23.1.0",
"eslint-plugin-astro": "^1.2.0",
"eslint-plugin-mdx": "^3.0.0",
"eslint-plugin-react": "^7.32.1",
"fs-extra": "^11.1.0",
"happy-dom": "^17.1.4",
"import-meta-resolve": "^4.0.0",
"mustache": "^4.2.0",
"npm-run-all": "^4.1.5",
"ol": "^10.4.0",
"ol-mapbox-style": "^12.4.1",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"semapro": "^1.1.0",
"semver": "^7.3.7",
"shikiji": "^0.10.2",
"typescript": "^5.7.3",
"unified": "^11.0.2",
"vite": "^6.0.1",
"vitest": "^3.0.7",
"yargs-parser": "^21.1.1"
},
"dependencies": {
"react-reconciler": "^0.31.0"
}
}