forked from alberto-acevedo/cesium-navigation
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2 KB
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
{
"name": "@znemz/cesium-navigation",
"version": "6.0.7",
"description": "Cesium plugin that adds a compass, navigator, and distance scale to the map",
"type": "module",
"keywords": [
"cesium",
"compass",
"distance",
"navigation",
"navigator",
"scale",
"typescript"
],
"homepage": "https://github.com/brickhouse-tech/cesium-navigation#readme",
"bugs": {
"url": "https://github.com/brickhouse-tech/cesium-navigation/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brickhouse-tech/cesium-navigation.git"
},
"license": "Apache-2.0",
"author": "Alberto Acevedo",
"contributors": [
"Nick McCready <nemtcan@gmail.com>"
],
"files": [
"dist"
],
"main": "./dist/cesium-navigation.umd.js",
"module": "./dist/cesium-navigation.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/cesium-navigation.js",
"require": "./dist/cesium-navigation.umd.js"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"peerDependencies": {
"cesium": ">=1.100"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^9.17.0",
"@turf/helpers": "^7.1.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"cesium": "^1.124.0",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.17.0",
"globals": "^15.13.0",
"jsdom": "^28.1.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vite-plugin-dts": "^4.3.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
}
}