-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) 路 2.44 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) 路 2.44 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
{
"name": "@waysidemapping/pinhead",
"version": "15.26.0-dev",
"type": "module",
"description": "Quality public domain icons for your map pins",
"license": "CC0-1.0",
"keywords": [
"icons",
"maps",
"cartography",
"public domain"
],
"homepage": "https://pinhead.ink",
"repository": {
"type": "git",
"url": "git+https://github.com/waysidemapping/pinhead.git"
},
"bugs": {
"url": "https://github.com/waysidemapping/pinhead/issues"
},
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/quincylvania"
},
{
"type": "Ko-Fi",
"url": "https://ko-fi.com/waysidemapping"
}
],
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prettier": "npx prettier --write 'docs/**/*.{js,html,css}' 'scripts/**/*.{js,html,css}' 'src/**/*.{js,html,css}'",
"commons": "npm run build_dist && npm run sync_to_commons",
"dist": "npm run build_dist",
"build_dist": "npm run check_icons && npm run check_icon_categories && npm run build_changelog && npm run build_icons && cp metadata/external_sources.json dist/external_sources.json && cp metadata/categories.json dist/categories.json",
"build_docs": "node scripts/build_docs.js",
"build_docs_for_preview": "npm run build_docs && npm run build_dist && node scripts/build_preview_docs.js",
"build_icons": "node scripts/build_icons.js",
"build_font": "node scripts/build_font.js",
"qgis_resources": "npm run build_dist && npm run prep_qgis_resources_repo && npm run build_qgis_resources && npm run sync_qgis_resources_repo",
"build_qgis_resources": "node scripts/build_qgis_resources.js",
"prep_qgis_resources_repo": "bash scripts/prep_qgis_resources_repo.sh",
"sync_qgis_resources_repo": "bash scripts/sync_qgis_resources_repo.sh",
"build_changelog": "node scripts/build_changelog.js",
"check_icons": "node scripts/check_icons.js",
"check_icon_categories": "node scripts/check_icon_categories.js",
"fetch_wikidata_info": "node scripts/fetch_wikidata_info.js",
"serve": "node serve.js",
"sync_to_commons": "node scripts/sync_to_commons.js"
},
"devDependencies": {
"chalk": "^6.0.0",
"dotenv": "^18.0.1",
"pluralize": "^8.0.0",
"prettier": "^3.9.5",
"sharp": "^0.35.3",
"svg-path-parse": "^1.1.3",
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "^16.0.0",
"turndown": "^7.2.4",
"xmlbuilder2": "^4.0.3"
}
}