-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 878 Bytes
/
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
{
"name": "gesture-frame",
"version": "3.0.0",
"description": "A Web Component that supports `pinch-zoom` and `pan` for PC and Touch Devices.",
"license": "WTFPL",
"repository": "luncheon/gesture-frame",
"type": "module",
"main": "gesture-frame.js",
"types": "gesture-frame.d.ts",
"files": [
"gesture-frame.css",
"gesture-frame.js",
"gesture-frame.d.ts",
"gesture-frame.ts"
],
"prettier": {
"printWidth": 140,
"endOfLine": "lf",
"singleQuote": true,
"trailingComma": "all"
},
"scripts": {
"start": "esbuild --format=esm --sourcemap --outdir=. --serve=0.0.0.0:8000 --servedir=. gesture-frame.ts",
"build": "tsc -p . && esbuild --format=esm --outdir=. gesture-frame.ts"
},
"devDependencies": {
"esbuild": "^0.24.2",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}