-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
99 lines (99 loc) · 2.51 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@poppanator/sveltekit-svg",
"version": "5.0.0",
"description": "Import SVG files as Svelte components",
"private": false,
"keywords": [
"sveltekit-plugin",
"svg",
"svgo",
"svelte",
"sveltekit",
"vite",
"vite-plugin"
],
"files": [
"dist"
],
"scripts": {
"dev": "tsc -w",
"build": "tsc && cp svg.d.ts dist/",
"pre-test": "npx playwright install && npm link && cd test-app && npm run pre-test",
"test": "cd test-app && npm run test",
"test:all": "npm ci && npm run build && npm run pre-test && npm run test",
"clean": "rimraf dist && rimraf node_modules",
"clean:test-app": "rimraf test-app/node_modules && rimraf test-app/build && rimraf test-app/test-results",
"clean:all": "npm run clean:test-app && npm run clean",
"bootstrap": "npm ci && cd test-app && npm ci"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Pontus Östlund",
"url": "https://github.com/poppa"
},
"contributors": [
{
"name": "Jani",
"url": "https://github.com/ljani"
},
{
"name": "James Camilleri",
"url": "https://github.com/james-camilleri"
},
{
"name": "Roman Schmid",
"url": "https://github.com/bummzack"
},
{
"name": "Arad Alvand",
"url": "https://github.com/aradalvand"
},
{
"name": "Tobias Oetiker",
"url": "https://github.com/oetiker"
},
{
"name": "Joakim Nordling",
"url": "https://github.com/joakimnordling"
},
{
"name": "Paolo Ricciuti",
"url": "https://github.com/paoloricciuti"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/poppa/sveltekit-svg"
},
"bugs": {
"url": "https://github.com/poppa/sveltekit-svg/issues"
},
"homepage": "https://github.com/poppa/sveltekit-svg#readme",
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.1.2",
"svelte": "^5.0.5",
"svelte-check": "^4.0.5",
"svelte-preprocess": "^6.0.3",
"svgo": "^3.2.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.4.10"
},
"peerDependencies": {
"svelte": ">=5.x",
"svgo": ">=3.x",
"vite": ">=5.x"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.0"
}
}