This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
{
"name": "@sveltevk/vksui",
"version": "0.0.5",
"license": "MIT",
"description": "VKSUI library",
"homepage": "https://sveltevk.github.io/VKSUI",
"keywords": [
"vk",
"components",
"svelte"
],
"author": {
"name": "Daniil Suvorov",
"url": "https://github.com/SevereCloud"
},
"repository": {
"type": "git",
"url": "https://github.com/sveltevk/VKSUI.git"
},
"bugs": "https://github.com/sveltevk/VKSUI/issues",
"defaultSchemeId": "bright_light",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"package": "svelte-kit package",
"preview": "svelte-kit preview",
"lint:check": "svelte-check --tsconfig ./tsconfig.json",
"lint:prettier": "prettier --ignore-path .gitignore --check --plugin-search-dir=. .",
"lint:eslint": "eslint --ignore-path .gitignore .",
"lint": "concurrently 'yarn lint:prettier' 'yarn lint:eslint' 'yarn lint:check'",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"prepare": "husky install",
"pre-commit": "yarn lint"
},
"devDependencies": {
"@fec/remark-a11y-emoji": "^3.1.0",
"@fontsource/jetbrains-mono": "^4.5.9",
"@sveltejs/adapter-static": "^1.0.0-next.34",
"@sveltejs/kit": "^1.0.0-next.348",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vkontakte/appearance": "https://github.com/VKCOM/Appearance#9.40.5",
"concurrently": "^7.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.2.1",
"husky": "^7.0.4",
"mdsvex": "^0.10.5",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "2.7.0",
"rehype-slug": "^5.0.1",
"remark-github": "^11.2.2",
"sveld": "^0.17.2",
"svelte": "3.48.0",
"svelte-check": "2.7.2",
"svelte-preprocess": "4.10.7",
"svelte2tsx": "0.5.10",
"tslib": "^2.3.1",
"typescript": "~4.5.4",
"vite-plugin-sveld": "^1.0.2"
},
"type": "module",
"dependencies": {
"@babel/runtime": "^7.17.2",
"@sveltevk/icons": "^1.145.2",
"@vkontakte/vk-bridge": "^2.5.3",
"@vkontakte/vkjs": "^0.22.2",
"@vkontakte/vkui-tokens": "^4.7.0"
}
}