-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.57 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
{
"name": "svelte-tenor",
"description": "Tenor GIF components, implemented in Svelte.",
"version": "0.2.0",
"author": {
"name": "Gautier Ben Aïm",
"url": "https://github.com/GauBen/"
},
"bugs": {
"url": "https://github.com/GauBen/svelte-tenor/issues"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@mdx-js/react": "^2.1.2",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addon-svelte-csf": "^2.0.7",
"@storybook/svelte": "^6.5.10",
"@sveltejs/adapter-static": "^1.0.0-next.39",
"@sveltejs/kit": "^1.0.0-next.405",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"babel-loader": "^8.2.5",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"postcss-html": "^1.5.0",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.3.38",
"prettier-plugin-svelte": "^2.7.0",
"sass": "^1.54.4",
"standard-version": "^9.5.0",
"stylelint": "^14.10.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"svelte": "^3.49.0",
"svelte-check": "^2.8.0",
"svelte-loader": "^3.1.3",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.13",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vite": "^3.0.7"
},
"homepage": "https://github.com/GauBen/svelte-tenor/#readme",
"keywords": [
"gif",
"gifs",
"keyboard",
"svelte",
"tenor"
],
"license": "MIT",
"main": "index.js",
"packageManager": "yarn@3.2.2",
"repository": {
"type": "git",
"url": "https://github.com/GauBen/svelte-tenor.git"
},
"scripts": {
"build": "svelte-kit package",
"build:website": "vite build && NODE_OPTIONS=--openssl-legacy-provider build-storybook -o build/storybook",
"check": "tsc --noEmit & eslint --fix 'src/**/*.{ts,js,svelte}' & svelte-check --tsconfig ./tsconfig.json & stylelint --fix 'src/**/*.svelte' &",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"clean": "rm -rf build/ package/",
"dev": "vite dev",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. src",
"publish": "yarn clean && standard-version && yarn build && npm publish ./package",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006"
},
"type": "module",
"volta": {
"node": "18.7.0",
"yarn": "1.22.19"
}
}