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 1
/
package.json
66 lines (66 loc) · 1.96 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
{
"name": "@sveltevk/widgets",
"version": "0.0.1",
"license": "MIT",
"description": "VK widgets, provided as a Svelte components.",
"author": "Daniil Suvorov (https://github.com/SevereCloud)",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"svelte": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"build": "concurrently 'yarn build:components' 'yarn build:doc'",
"build:components": "rollup -c",
"build:doc": "rollup -c doc.config.js",
"dev:doc": "rollup -c doc.config.js -w",
"format:prettier": "prettier --write --ignore-unknown .",
"format:markdown": "markdownlint **/*.md --fix --ignore node_modules",
"format": "yarn format:markdown && yarn format:prettier",
"lint:prettier": "prettier --check --ignore-unknown .",
"lint:markdown": "markdownlint **/*.md --ignore node_modules",
"lint": "concurrently 'yarn lint:prettier' 'yarn lint:markdown'",
"start": "sirv public",
"tunnel": "vk-tunnel --port=5000"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@vkontakte/vk-tunnel": "^0.1.0",
"concurrently": "^7.0.0",
"glob": "^7.1.6",
"markdownlint-cli": "^0.31.1",
"mdsvex": "^0.8.6",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"prism-svelte": "^0.4.7",
"prismjs": "^1.21.0",
"rollup": "^2.26.5",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-svelte": "^5.2.3",
"rollup-plugin-terser": "^7.0.0",
"sirv-cli": "^1.0.6",
"svelte": "^3.24.1"
},
"peerDependencies": {
"svelte": "^3.20.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sveltevk/widgets.git"
},
"homepage": "https://sveltevk.github.io/widgets/",
"bugs": "https://github.com/sveltevk/widgets/issues",
"keywords": [
"vk",
"widgets",
"components",
"svelte"
],
"files": [
"src",
"dist"
],
"publishConfig": {
"access": "public"
}
}