-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
122 lines (122 loc) · 2.9 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@planet/maps",
"version": "10.3.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 test:lib && npm run test:rendering",
"test:lib": "vitest run --root ./tests/lib",
"test:rendering": "playwright test --config=tests/rendering/playwright.config.js",
"test:not-working": "vitest run -r ./tests/unit",
"start": "astro dev --root ./site",
"start:rendering": "vite serve --config=tests/rendering/vite.config.js",
"build": "astro build --root ./site",
"generate": "node tools/generate.js && npm run lint -- --fix",
"clean": "node tools/clean.js"
},
"license": "Apache-2.0",
"dependencies": {
"react-reconciler": "^0.29.0"
},
"peerDependencies": {
"ol": "*",
"ol-mapbox-style": "*",
"react": "*"
},
"devDependencies": {
"@astrojs/mdx": "^3.0.0",
"@astrojs/react": "^4.0.0",
"@octokit/rest": "^21.0.0",
"@playwright/test": "^1.25.2",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitest/browser": "^2.0.3",
"astro": "^4.0.3",
"es-main": "^1.2.0",
"eslint": "^8.57.0",
"eslint-config-planet": "^22.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",
"import-meta-resolve": "^4.0.0",
"mustache": "^4.2.0",
"ol": "^10.3.0",
"ol-mapbox-style": "^12.3.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"semapro": "^1.1.0",
"semver": "^7.3.7",
"shikiji": "^0.10.2",
"unified": "^11.0.2",
"vite": "^6.0.1",
"vitest": "^2.0.3",
"yargs-parser": "^21.1.1"
},
"eslintConfig": {
"extends": [
"planet"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"import/named": "off",
"import/default": "off",
"import/no-unresolved": [
"error",
{
"ignore": [
"astro:content",
"@astrojs/*",
"@octokit/rest"
]
}
]
},
"overrides": [
{
"files": [
"*.astro"
],
"extends": [
"plugin:astro/recommended"
],
"rules": {
"prettier/prettier": "off"
}
},
{
"files": [
"*.jsx"
],
"extends": [
"planet/react"
],
"rules": {
"import/named": "off"
}
},
{
"files": [
"*.mdx"
],
"extends": [
"plugin:mdx/recommended",
"planet/react"
]
}
]
}
}