-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 903 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
32
33
34
35
36
37
38
39
{
"name": "scratchable",
"version": "0.0.4",
"description": "A scratch card renderer using HTML Canvas",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HoseungJang/scratchable.git"
},
"author": "HoseungJang",
"license": "MIT",
"bugs": {
"url": "https://github.com/HoseungJang/scratchable/issues"
},
"homepage": "https://github.com/HoseungJang/scratchable#readme",
"devDependencies": {
"tsup": "^7.1.0",
"typescript": "^5.1.6"
}
}