-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "svelvg",
"version": "0.12.2",
"license": "MIT",
"description": "Convert SVG files into Svelte components with TypeScript definitions",
"author": "Eric Liu (https://github.com/metonym)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"svelvg": "cli.js"
},
"scripts": {
"dev": "bun --bun tsc -w",
"build": "bun --bun tsc",
"test": "bun test tests",
"format": "bun --bun prettier --ignore-path .gitignore --write . --cache"
},
"dependencies": {
"estree-walker": "^2.0.2",
"svelte": "^4.2.19",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@types/bun": "latest",
"@types/jest": "latest",
"prettier": "latest",
"typescript": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metonym/svelvg.git"
},
"homepage": "https://github.com/metonym/svelvg",
"bugs": "https://github.com/metonym/svelvg/issues",
"keywords": [
"svelte",
"svg"
],
"files": [
"dist",
"lib",
"cli.js"
]
}