-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.12 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
{
"name": "mapbox-pattern-generator",
"version": "0.1.5",
"description": "Generate sprites suitable for Mapbox",
"keywords": [
"mapbox",
"pattern",
"generator",
"javascript",
"typescript"
],
"scripts": {
"start": "parcel ./src/index.html -p 3000",
"build": "parcel build",
"watch": "parcel watch",
"check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/p3tecracknell/pattern-generator.git"
},
"author": "Pete Cracknell",
"license": "ISC",
"bugs": {
"url": "https://github.com/p3tecracknell/pattern-generator/issues"
},
"homepage": "https://github.com/p3tecracknell/pattern-generator#readme",
"devDependencies": {
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"parcel": "^2.12.0",
"typescript": "^5.4.5"
},
"source": "src/index.ts",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"targets": {
"default": {
"sourceMap": {
"inline": true
}
},
"types": {},
"static": {
"distDir": "_site"
}
}
}