-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
52 lines (52 loc) · 905 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "is-svg",
"version": "5.1.0",
"description": "Check if a string is SVG",
"license": "MIT",
"repository": "sindresorhus/is-svg",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=14.16"
},
"scripts": {
"//test": "xo && ava && tsd",
"test": "ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"svg",
"vector",
"graphics",
"image",
"picture",
"type",
"detect",
"check",
"is",
"string"
],
"dependencies": {
"fast-xml-parser": "^4.4.1"
},
"devDependencies": {
"@types/node": "^22.1.0",
"ava": "^6.1.3",
"time-span": "^5.1.0",
"tsd": "^0.31.1",
"xo": "^0.59.3"
}
}