-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.49 KB
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
{
"name": "svelicon",
"version": "2.0.2",
"description": "✨ Svelte Icon Library - Search, discover and download Iconify icons as Svelte components with TypeScript support",
"keywords": [
"svelte",
"svelte5",
"svelte icon",
"icons",
"svg",
"iconify",
"search",
"batch download",
"typescript",
"cli",
"parallel",
"font awesome",
"fluent",
"lucide",
"material design"
],
"repository": {
"type": "git",
"url": "git+https://github.com/friendofsvelte/svelicon.git"
},
"main": "index.js",
"type": "module",
"bin": {
"svelicon": "cli.js"
},
"dependencies": {
"@iconify/utils": "^2.1.5",
"axios": "^1.6.2",
"commander": "^11.1.0",
"mkdirp": "^3.0.1",
"p-limit": "^6.2.0"
},
"devDependencies": {
"vitest": "^2.1.0",
"jsdom": "^25.0.0",
"@vitest/ui": "^2.1.0",
"husky": "^8.0.3"
},
"scripts": {
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"prepare": "husky install",
"pre-push": "npm run test:run",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"version:beta": "npm version prerelease --preid=beta",
"release": "npm run test:run && npm run version:patch",
"release:minor": "npm run test:run && npm run version:minor",
"release:major": "npm run test:run && npm run version:major",
"release:beta": "npm run test:run && npm run version:beta"
}
}