-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 1.38 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "bmp-ts",
"version": "1.0.9",
"description": "A pure typescript BMP encoder and decoder",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hipstersmoothie/bmp-ts"
},
"files": [
"dist",
"types"
],
"author": {
"name": "Andrew lisowski",
"email": "[email protected]"
},
"scripts": {
"build": "tshy",
"test": "vitest",
"release": "auto shipit"
},
"devDependencies": {
"@types/node": "^10.11.7",
"auto": "^11.1.2",
"prettier": "^3.2.5",
"tshy": "^1.12.0",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"prettier": {
"singleQuote": true
},
"keywords": [
"bmp",
"1bit",
"4bit",
"8bit",
"16bit",
"24bit",
"32bit",
"encoder",
"decoder",
"image",
"javascript",
"js"
],
"tshy": {
"exclude": [
"**/__test__/**"
],
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts",
"type": "module"
}