-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 2.81 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
{
"name": "com.akylas.mbview",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Akylas/mbview-rs.git"
},
"author": {
"name": "Martin Guillon",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Akylas/mbview-rs/issues"
},
"homepage": "https://github.com/Akylas/mbview-rs#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true
},
"private": true,
"scripts": {
"dev": "tauri dev",
"dev:web": "vite",
"tauri": "tauri",
"build": "tauri build",
"build:web": "vite build",
"test": "cargo test --manifest-path ./src-tauri/Cargo.toml",
"format": "prettier --write --plugin-search-dir=. src *.js && eslint --fix src *.js",
"check": "cargo check --manifest-path src-tauri/Cargo.toml && eslint src *.js && svelte-check",
"release": "standard-version --commit-all"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@sveltejs/vite-plugin-svelte": "3.1.1",
"@tauri-apps/api": "2.0.0-beta.15",
"@tauri-apps/cli": "2.0.0-beta.22",
"@tauri-apps/toml": "^2.2.4",
"@types/geojson": "^7946.0.14",
"@types/mapbox__tilebelt": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"carbon-components": "10.58.15",
"cssnano": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"sass": "^1.77.6",
"standard-version": "^9.5.0",
"svelte": "^4.2.18",
"svelte-check": "^3.8.4",
"svelte-preprocess": "^5.1.4",
"typescript": "^5.5.4",
"vite": "^5.3.5"
},
"dependencies": {
"@akylas/svelte-tauri-filedrop": "^2.0.0",
"@geoffcox/svelte-splitter": "^1.0.1",
"@mapbox/tilebelt": "1.0.2",
"@mapbox/vector-tile": "^2.0.3",
"@maplibre/maplibre-gl-compare": "^0.5.0",
"@tauri-apps/plugin-clipboard-manager": "2.1.0-beta.5",
"@tauri-apps/plugin-dialog": "2.0.0-beta.7",
"@tauri-apps/plugin-fs": "2.0.0-beta.7",
"@tauri-apps/plugin-shell": "2.0.0-beta.8",
"carbon-components-svelte": "0.85.0",
"carbon-icons-svelte": "^12.10.0",
"events": "^3.3.0",
"highlight.js": "^11.10.0",
"mapbox-gl-controls": "^2.3.5",
"maplibre-gl": "^4.5.0",
"pbf": "^4.0.1",
"randomcolor": "^0.6.2",
"svelte-highlight": "^7.7.0",
"svelte-i18n": "^4.0.0"
},
"version": "1.1.0",
"standard-version": {
"scripts": {
"postchangelog": "sed -r -e 's/^#{1,3} \\[/## [/' -i CHANGELOG.md"
}
},
"packageManager": "[email protected]"
}