-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathpackage.json
79 lines (79 loc) · 2.24 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
{
"name": "resium",
"version": "1.18.3",
"description": "React component library for Cesium",
"source": "./src/index.ts",
"main": "./dist/resium.umd.js",
"module": "./dist/resium.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/resium.mjs",
"require": "./dist/resium.umd.js"
}
},
"repository": "https://github.com/reearth/resium.git",
"author": "rot1024 <[email protected]>",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"type": "tsc",
"lint": "eslint .",
"format": "eslint --fix .",
"storybook": "storybook dev -p 9001",
"storybook:build": "storybook build -o docs/static/examples",
"docs": "yarn --cwd docs start",
"docs:build": "run-s docs:generate storybook:build docs:build2",
"docs:generate": "ts-node --esm -O '{\"module\":\"ESNext\"}' ./scripts/generator/index.mts",
"docs:build2": "mv docs/static/examples/cesium docs/static/ && yarn --cwd docs build"
},
"files": [
"src",
"dist"
],
"engines": {
"node": ">=20.11.0"
},
"peerDependencies": {
"cesium": "1.x",
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"devDependencies": {
"@storybook/addon-essentials": "8.0.5",
"@storybook/addon-storysource": "8.0.5",
"@storybook/addons": "7.6.17",
"@storybook/builder-vite": "8.0.5",
"@storybook/react": "8.0.5",
"@storybook/react-vite": "8.0.5",
"@storybook/theming": "8.0.5",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.2",
"@types/node": "20.12.2",
"@types/react": "18.2.73",
"@vitejs/plugin-react": "4.2.1",
"c8": "9.1.0",
"cesium": "1.116.0",
"eslint": "8.57.0",
"eslint-config-reearth": "0.3.0",
"globby": "14.0.1",
"jsdom": "24.0.0",
"npm-run-all2": "5.0.0",
"prettier": "3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"storybook": "8.0.5",
"ts-expect": "1.3.0",
"ts-node": "10.9.2",
"typescript": "5.4.3",
"vite": "5.2.7",
"vite-plugin-cesium": "1.2.22",
"vite-plugin-dts": "3.8.1",
"vitest": "1.4.0",
"web-streams-polyfill": "4.0.0"
}
}