-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 876 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 876 Bytes
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
{
"name": "@oakstudios/inline-svg",
"version": "0.2.1",
"description": "A web component for dynamically fetching SVG files and inlining them in HTML",
"main": "index.js",
"type": "module",
"exports": {
".": {
"import": "./index.js"
},
"./auto-register": {
"import": "./auto-register.js"
}
},
"scripts": {
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/oakstudios/inline-svg.git"
},
"keywords": [
"web-component"
],
"author": "Oak Studios <info@oak.is> https://oak.is",
"license": "MIT",
"bugs": {
"url": "https://github.com/oakstudios/inline-svg/issues"
},
"homepage": "https://github.com/oakstudios/inline-svg#readme",
"devDependencies": {
"@vitest/browser": "^1.4.0",
"@vitest/ui": "^1.4.0",
"vite": "^5.2.8",
"vitest": "^1.4.0"
}
}