-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.22 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "mahgen",
"version": "1.0.0",
"description": "A simple library that generates corresponding mahjong tile images for given sequences.",
"keywords": [
"mahjong",
"image processing"
],
"homepage": "https://github.com/eric200203/mahgen",
"bugs": {
"url": "https://github.com/eric200203/mahgen/issues"
},
"license": "MIT",
"author": {
"name": "Eric Lee",
"url": "https://github.com/eric200203",
"email": "[email protected]"
},
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"typings": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"coverage": "vitest run --coverage",
"base64": "node script/base64.js"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.24.5",
"typescript": "^4.6.4",
"vite": "^3.2.0",
"vite-plugin-dts": "^1.6.6",
"vitest": "^0.24.5"
},
"dependencies": {
"jimp": "^0.16.2"
},
"repository": {
"type": "git",
"url": "https://github.com/eric200203/mahgen"
}
}