-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "svg-to-svelte",
"version": "2.2.1",
"license": "MIT",
"description": "Convert SVG files to Svelte components",
"author": "Eric Liu (https://github.com/metonym)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=12"
},
"scripts": {
"develop": "tsnd --respawn --transpile-only src",
"test": "tsnd --transpile-only src/tests",
"test:tdd": "tsnd --respawn --transpile-only src/tests",
"prepack": "tsc"
},
"dependencies": {
"svelte": "^3.32.1"
},
"devDependencies": {
"@types/node": "^14.14.23",
"ts-node-dev": "1.1.1",
"typescript": "4.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/svg-to-svelte.git"
},
"homepage": "https://github.com/metonym/svg-to-svelte",
"bugs": "https://github.com/metonym/svg-to-svelte/issues",
"keywords": [
"svelte",
"svelte component",
"svg",
"icon",
"library"
],
"files": [
"dist",
"cli.js"
],
"bin": {
"svg-to-svelte": "./cli.js",
"s2s": "./cli.js"
}
}