-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.08 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
{
"name": "png-validator",
"version": "2.0.0",
"description": "Png validator checks Png files for corruption",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"files": [
"index.js",
"index.d.ts",
"index.d.ts.map"
],
"author": "Sámal Rasmussen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/samal-rasmussen/png-validator.git"
},
"homepage": "https://github.com/samal-rasmussen/png-validator",
"keywords": [
"png",
"png-validator",
"png-validate",
"png-validation",
"validator",
"validate",
"validation",
"valid",
"invalid",
"corruption",
"corrupt",
"correct",
"correction",
"checker"
],
"sideEffects": false,
"scripts": {
"build": "dts-buddy",
"check": "tsc -w",
"test": "node --test",
"publish": "npm publish --registry https://registry.npmjs.org/ --access public"
},
"devDependencies": {
"@types/node": "20.9.0",
"dts-buddy": "0.4.0",
"typescript": "5.2.2"
}
}