-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.88 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "sveltekit-sprite",
"version": "0.1.2",
"description": "The plugin inline SVG into SvelteKit app template",
"private": false,
"type": "module",
"keywords": [
"sveltekit-plugin",
"svg",
"svgo",
"svelte",
"sveltekit",
"sprite",
"svg-sprite",
"inline-svg",
"inline"
],
"scripts": {
"dev": "vitest dev",
"build": "npx unbuild",
"link": "npm link sveltekit-sprite && cd test && npm run link",
"svelte-test": "npm run build && npm run link && cd test && npm run dev"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Misha Rodshtein",
"url": "https://github.com/rodshtein"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodshtein/sveltekit-sprite"
},
"bugs": {
"url": "https://github.com/rodshtein/sveltekit-sprite/issues"
},
"homepage": "https://github.com/rodshtein/sveltekit-sprite",
"devDependencies": {
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-auto": "^1.0.0",
"@sveltejs/kit": "^1.0.0",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^15.14.9",
"@types/svgo": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"lodash.merge": "^4.6.2",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.8.1",
"svelte": "^3.54.0",
"svelte-check": "^2.9.2",
"tslib": "^2.4.0",
"typescript": "^4.8.2",
"unbuild": "^1.0.2",
"vite": "^4.0.0",
"vitest": "^0.25.8"
},
"dependencies": {
"svgo": "^2.3.0"
},
"peerDependencies": {
"vite": ">=3.x"
}
}