-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.89 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.89 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
{
"name": "@rapideditor/temaki",
"version": "5.13.0",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/rapideditor/temaki.git"
},
"contributors": [
"Bryan Housel <bhousel@gmail.com> (https://github.com/bhousel)",
"Quincy Morgan <quincy.morgan@icloud.com> (https://github.com/quincylvania)"
],
"description": "An expansion pack for https://github.com/mapbox/maki",
"type": "module",
"keywords": [
"icons",
"OSM",
"OpenStreetMap",
"map",
"mapping",
"svg"
],
"files": [
"dist/",
"data/",
"icons/"
],
"scripts": {
"all": "bun run --sequential clean check tsc metadata dist",
"build": "bun run all",
"check": "bun ./scripts/check.ts",
"clean": "bun ./scripts/clean.ts",
"dist": "bun run --parallel 'dist:*'",
"dist:symbol": "bun run --sequential pre-symbol symbol post-symbol",
"dist:view": "svg-sprite --view --view-dest . --shape-transform '' --shape-id-generator \"temaki-%s\" -w 15 -h 15 -p 2 --view-bust false --view-sprite dist/temaki-view.svg icons/*.svg",
"metadata": "bun ./scripts/metadata.ts",
"post-symbol": "rm mustache-vars.json",
"pre-symbol": "bun ./scripts/pre-symbol.ts",
"start": "bun ./scripts/server.ts",
"symbol": "svg-sprite --symbol --symbol-dest . --shape-transform '' --variables 'mustache-vars.json' --shape-id-generator \"temaki-%s\" -w 15 -h 15 --symbol-example true --symbol-example-template docs/template.html --symbol-example-dest docs/index.html --symbol-sprite dist/temaki-symbol.svg icons/*.svg",
"tsc": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"json-stringify-pretty-compact": "^4.0.0",
"svg-path-parse": "^1.1.3",
"svg-sprite": "^2.0.4",
"typescript": "^5.9.3",
"xmlbuilder2": "^4.0.3"
},
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.3.10"
}
}