@earthview/core 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +661 -0
- package/README.md +9 -0
- package/dist/index.d.ts +767 -0
- package/dist/index.js +1074 -0
- package/dist/index.mjs +33616 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@earthview/core",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "A reliable geographic information graphics system developed based on OpenLayers.",
|
|
5
|
+
"author": "happyboy",
|
|
6
|
+
"license": "AGPL-3.0-only",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/0xhappyboy/earthview.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/0xhappyboy/earthview/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/0xhappyboy/earthview",
|
|
15
|
+
"main": "dist/index.js",
|
|
16
|
+
"module": "dist/index.mjs",
|
|
17
|
+
"types": "dist/index.d.ts",
|
|
18
|
+
"source": "src/index.tsx",
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"import": "./dist/index.mjs",
|
|
23
|
+
"require": "./dist/index.js"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=16"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"clean": "rm -rf dist node_modules/.cache .tsbuildinfo",
|
|
31
|
+
"build": "vite build",
|
|
32
|
+
"build:fast": "vite build --mode development",
|
|
33
|
+
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
34
|
+
"start": "vite build --watch",
|
|
35
|
+
"dev": "vite",
|
|
36
|
+
"prepare": "npm run build",
|
|
37
|
+
"test": "run-s test:unit test:lint",
|
|
38
|
+
"test:build": "vite build",
|
|
39
|
+
"test:lint": "eslint .",
|
|
40
|
+
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
41
|
+
"test:watch": "react-scripts test --env=jsdom",
|
|
42
|
+
"predeploy": "cd example && yarn install && yarn run build",
|
|
43
|
+
"deploy": "gh-pages -d example/build"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"ol": "^10.9.0",
|
|
48
|
+
"ol-ext": "^4.0.38",
|
|
49
|
+
"@types/ol-ext": "npm:@siedlerchr/types-ol-ext"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/node": "^24.10.1",
|
|
53
|
+
"ts-node": "^10.9.2",
|
|
54
|
+
"typescript": "^5.9.3",
|
|
55
|
+
"cross-env": "^7.0.3",
|
|
56
|
+
"eslint": "^9.17.0",
|
|
57
|
+
"eslint-plugin-react": "^7.37.4",
|
|
58
|
+
"gh-pages": "^6.3.0",
|
|
59
|
+
"npm-run-all": "^4.1.5",
|
|
60
|
+
"vite": "^7.2.6",
|
|
61
|
+
"vite-plugin-dts": "^4.5.4"
|
|
62
|
+
},
|
|
63
|
+
"files": [
|
|
64
|
+
"dist"
|
|
65
|
+
]
|
|
66
|
+
}
|