forked from davidmz/apng-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"name": "gyeonghwon",
"version": "0.2.0",
"description": "Library for displaying animated image files in canvas context",
"type": "module",
"main": "./dist/gyeonghwon.cjs",
"module": "./dist/gyeonghwon.js",
"browser": "./dist/gyeonghwon.umd.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/gyeonghwon.js",
"require": "./dist/gyeonghwon.cjs",
"browser": "./dist/gyeonghwon.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && cross-env BUILD_MODE=package vite build",
"deploy": "cp public/index.html index.html && tsc && vite build",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"generate:fixtures": "tsx scripts/generate-fixtures.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code4history/Gyeonghwon.git"
},
"keywords": [
"apng",
"gif",
"webp",
"svg",
"animation",
"animated image",
"canvas"
],
"homepage": "https://github.com/code4history/Gyeonghwon#readme",
"license": "MIT",
"readme": "README.md",
"author": "Code for History",
"bugs": {
"url": "https://github.com/code4history/Gyeonghwon/issues"
},
"devDependencies": {
"canvas": "^2.11.2",
"cross-env": "^7.0.3",
"gif-encoder": "^0.7.2",
"happy-dom": "^15.11.7",
"maplibre-gl": "^3.6.2",
"ol": "^8.2.0",
"sharp": "^0.33.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"upng-js": "^2.1.0",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.4.0",
"vitest": "^1.6.0"
}
}