-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
69 lines (69 loc) · 1.79 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
{
"name": "@steeze-ui/simple-icons",
"description": "Icon Sources (based on Simple Icons) built for @steeze-ui/icons",
"version": "1.10.1",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "pnpm build:icons && svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"build:icons": "node build.js"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"svelte": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"devDependencies": {
"@steeze-ui/icons": "workspace:^",
"@steeze-ui/svelte-icon": "workspace:^",
"simple-icons": "^13.17.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/vite-plugin-svelte": "^4.0.1",
"@sveltejs/kit": "^2.8.1",
"@sveltejs/package": "^2.3.7",
"publint": "^0.2.12",
"svelte": "^5.2.4",
"svelte-check": "^4.0.9",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vite": "^5.4.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steeze-ui/icons.git",
"directory": "packages/builders/simple-icons-builder"
},
"keywords": [
"raw",
"icons",
"simple-icons",
"solid",
"outline",
"color",
"steeze"
],
"author": "she11sh0cked <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/steeze-ui/icons/issues"
},
"homepage": "https://github.com/steeze-ui/icons#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}