-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.99 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
100
101
102
103
104
105
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@logicer/icon",
"version": "0.0.1",
"description": "Logicer's Icon Generator",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite dev",
"dev:open": "vite dev --open",
"build": "vite build",
"preview": "vite preview",
"preview:open": "vite preview --open",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"style": "pnpm lint && pnpm prettier",
"lint": "eslint . --fix --cache",
"lint:ci": "eslint . --cache",
"prettier": "prettier --write .",
"prettier:ci": "prettier --check .",
"type-coverage": "type-coverage"
},
"devDependencies": {
"@floating-ui/dom": "^1.5.3",
"@logicer/eslint-plugin": "^4.0.1",
"@logicer/prettier-config": "^2.0.2",
"@logicer/tsconfig": "^4.0.0",
"@primer/octicons": "^19.8.0",
"@shockpkg/icon-encoder": "^3.1.1",
"@skeletonlabs/skeleton": "^2.4.0",
"@skeletonlabs/tw-plugin": "^0.2.3",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.26.0",
"@tailwindcss/forms": "^0.5.7",
"@types/eslint": "^8.56.0",
"@types/file-saver": "^2.0.7",
"@vite-pwa/sveltekit": "^0.2.7",
"autoprefixer": "^10.4.14",
"colorjs.io": "^0.4.5",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"file-saver": "^2.0.5",
"globals": "^13.24.0",
"kolorist": "^1.8.0",
"postcss": "^8.4.24",
"postcss-load-config": "^4.0.1",
"prettier": "3.1.0",
"prettier-plugin-svelte": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"svelte": "^4.2.2",
"svelte-check": "^3.5.2",
"tailwindcss": "^3.3.2",
"ts-node": "11.0.0-beta.1",
"ts-plugin-type-coverage": "^2.26.4",
"tslib": "^2.6.2",
"type-coverage": "^2.27.1",
"typescript": "^5.2.2",
"typescript-svelte-plugin": "^0.3.34",
"vite": "^4.5.0",
"vite-plugin-node-polyfills": "^0.15.0",
"vite-plugin-pwa": "^0.16.5",
"vite-plugin-static-copy": "^0.17.0",
"vite-plugin-tailwind-purgecss": "^0.1.3",
"vite-plugin-top-level-await": "^1.3.1",
"wasm-vips": "^0.0.5",
"workbox-precaching": "^7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Logicer16/icon.git"
},
"author": "logicer",
"license": "SEE LICENSE IN <LICENCE.md>",
"bugs": {
"url": "https://github.com/Logicer16/icon/issues"
},
"homepage": "https://github.com/Logicer16/icon#readme",
"engines": {
"node": "^20.10.0",
"pnpm": ">=8.10.0"
},
"type": "module",
"pnpm": {
"supportedArchitectures": {
"os": [
"current"
],
"cpu": [
"wasm32",
"current"
]
}
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"strict": true,
"ignoreCatch": true,
"reportSemanticError": true,
"ignoreFiles": [
"build/**/*",
"vite.config.ts.*"
]
}
}