-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
79 lines (79 loc) · 1.71 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
{
"name": "phosphor-svelte",
"version": "3.0.1",
"description": "A clean and friendly icon family for Svelte",
"svelte": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"svelte": "./lib/index.js"
},
"./lib/*": {
"types": "./lib/*.svelte.d.ts",
"svelte": "./lib/*.svelte"
},
"./vite": {
"types": "./vite/index.d.ts",
"import": "./vite/index.js"
},
"./package.json": "./package.json"
},
"type": "module",
"files": [
"lib",
"vite"
],
"scripts": {
"build": "npm run build:icon",
"build:icon": "node scripts/build.js",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haruaki07/phosphor-svelte.git"
},
"keywords": [
"icons",
"icon-pack",
"web",
"html",
"css",
"svg",
"svg-icons",
"icon-font"
],
"author": "haruaki07",
"license": "MIT",
"bugs": {
"url": "https://github.com/haruaki07/phosphor-svelte/issues"
},
"homepage": "https://phosphoricons.com",
"peerDependencies": {
"svelte": "^5.0.0 || ^5.0.0-next.96",
"vite": ">=5"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"dependencies": {
"estree-walker": "^3.0.3",
"magic-string": "^0.30.13"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^4.0.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.6",
"fs-extra": "^9.0.1",
"html-minifier-terser": "^5.1.1",
"jsdom": "^25.0.1",
"log-update": "^4.0.0",
"memfs": "^3.4.13",
"p-map": "^5.5.0",
"svelte": "^5.2.7",
"vitest": "^2.1.5"
}
}