-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
{
"type": "module",
"name": "svg-bbox-polyfill",
"version": "0.1.1",
"description": "SVG `getBBox` Polyfill",
"keywords": [
"svg",
"bbox",
"polyfill",
"bounding box",
"getBBox",
"dom",
"no browser",
"ssr",
"server side"
],
"sideEffects": false,
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "vite build && bun build:types",
"build:types": "tsup src/index.ts --outDir build --format esm --dts-only --tsconfig tsconfig.build.json"
},
"dependencies": {
"svg-path-bbox": "^2.1.0"
},
"devDependencies": {
"@types/bun": "^1.2.21",
"@types/opentype.js": "^1.3.8",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"bun": "^1.2.21",
"eslint": "9.34.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.1.3",
"vite-plugin-externalize-deps": "^0.10.0"
},
"homepage": "https://github.com/pinely-international/svg-bbox#readme",
"bugs": {
"url": "https://github.com/pinely-international/svg-bbox/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinely-international/svg-bbox.git"
},
"license": "MIT",
"author": "FrameMuse"
}