-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.83 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.83 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@map.ir/vector-style-editor",
"version": "1.5.8",
"type": "module",
"description": "An editor for styling vector tiles with Mapbox style Spec.",
"main": "dist/index.js",
"targets": {
"main": false
},
"scripts": {
"build": "rollup -c",
"build:demo": "parcel build demo/index.html --public-url /vector-style-editor/ --dist-dir build",
"watch": "rollup -cw",
"serve": "parcel demo/index.html --dist-dir build",
"dev": "npm-run-all --parallel watch serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/map-ir/vector-style-editor.git"
},
"keywords": [
"mapbox",
"vector",
"style",
"style-editor",
"mapir"
],
"author": "Reyhane Masumi",
"contributors": [
"Mohammad H. Sattarian"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/map-ir/vector-style-editor/issues"
},
"files": [
"src",
"dist"
],
"homepage": "https://github.com/map-ir/vector-style-editor#readme",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-inject": "4.0.4",
"@rollup/plugin-node-resolve": "14.1.0",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "8.5.0",
"@rollup/plugin-url": "^7.0.0",
"@svgr/rollup": "^6.4.0",
"@types/uuid": "^8.3.4",
"babel-plugin-macros": "^3.1.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.7.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "5.8.2",
"stream-browserify": "^3.0.0"
},
"dependencies": {
"@headlessui/react": "^1.7.10",
"@monaco-editor/react": "^4.4.6",
"@popperjs/core": "^2.11.6",
"@radix-ui/react-select": "^1.2.0",
"@radix-ui/react-slider": "^1.0.0",
"color": "^4.2.3",
"jotai": "^1.8.4",
"maplibre-gl": "^2.4.0",
"nanoid": "^4.0.0",
"styled-map": "^3.3.0"
},
"peerDependencies": {
"@types/color": "^3.0.3",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.1.2",
"react-popper": "^2.3.0",
"styled-components": "^5.3.5",
"typescript": "^4.8.4"
}
}