-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.18 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "remsg-inspector",
"type": "module",
"version": "0.0.0",
"author": "BeeeQueue <adam@haglund.dev>",
"license": "MIT",
"private": true,
"packageManager": "pnpm@10.30.3",
"engines": {
"node": "^22"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,json5,yaml,yml,css,scss,md}": [
"prettier --write"
]
},
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "eslint src",
"test": "tsx --test src/**/*.test.ts",
"typecheck": "svelte-check"
},
"resolutions": {
"esbuild": "0.27.3"
},
"dependencies": {
"remsg": "1.2.0",
"svelte": "5.53.6",
"svelte-multiselect": "11.6.2"
},
"devDependencies": {
"@antfu/eslint-config": "5.4.1",
"@iconify-json/lucide": "1.2.95",
"@iconify-json/simple-icons": "1.2.71",
"@rollup/plugin-inject": "5.0.5",
"@sveltejs/vite-plugin-svelte": "6.2.4",
"@tsconfig/strictest": "2.0.8",
"@tsconfig/svelte": "5.0.8",
"@unocss/preset-icons": "66.6.2",
"@unocss/preset-uno": "66.6.2",
"@unocss/preset-web-fonts": "66.6.2",
"@unocss/reset": "66.6.2",
"@unocss/transformer-directives": "66.6.2",
"@unocss/vite": "66.6.2",
"buffer": "6.0.3",
"eslint": "9.39.3",
"eslint-plugin-svelte": "3.15.0",
"lint-staged": "16.3.0",
"prettier": "3.8.1",
"prettier-plugin-svelte": "3.5.0",
"prettier-plugin-tailwindcss": "0.7.2",
"simple-git-hooks": "2.13.1",
"svelte-check": "4.4.4",
"typescript": "5.9.3",
"vite": "7.3.1",
"vite-plugin-pwa": "1.2.0"
},
"pnpm": {
"overrides": {
"@eslint/markdown": "-",
"@stylistic/eslint-plugin": "-",
"@vitest/eslint-plugin": "-",
"eslint-plugin-jsonc": "-",
"eslint-plugin-toml": "-",
"eslint-plugin-vue": "-",
"eslint-processor-vue-blocks": "-",
"eslint-plugin-yml": "-",
"jsonc-eslint-parser": "-",
"toml-eslint-parser": "-",
"yaml-eslint-parser": "-",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1"
}
}
}