-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.48 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
{
"name": "@crystal-creations/animated-checkmark",
"version": "4.0.0-beta.5",
"type": "module",
"author": "Crystal Creations GbR and Johannes Huther",
"license": "MIT",
"description": "A checkmark animation wrapped in a Vue component based on a codepen by Simon Wuyts",
"scripts": {
"lint": "eslint src/**/* --max-warnings 0",
"semantic-release": "semantic-release",
"build": "vite build",
"dev": "vite",
"serve": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic",
"commitlint": "commitlint"
},
"keywords": [
"checkmark",
"animated",
"success"
],
"homepage": "https://github.com/Crystal-Creations-GbR/animated-checkmark",
"bugs": "https://github.com/Crystal-Creations-GbR/animated-checkmark/issues",
"files": [
"dist",
"src"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./styles": {
"default": "./dist/style.css"
},
"./nuxt": {
"default": "./src/nuxt.mjs"
}
},
"repository": "https://github.com/Crystal-Creations-GbR/animated-checkmark",
"peerDependencies": {
"vue": "^3.0.0",
"vuetify": "^3.3.19"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@nuxt/kit": "^3.7.4",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-essentials": "7.4.5",
"@storybook/addon-interactions": "7.4.5",
"@storybook/addon-links": "7.4.5",
"@storybook/blocks": "7.4.5",
"@storybook/testing-library": "0.2.1",
"@storybook/vue3": "7.4.5",
"@storybook/vue3-vite": "7.4.5",
"@types/node": "^20.7.1",
"@vitejs/plugin-vue": "^4.3.4",
"chromatic": "^7.2.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-storybook": "^0.6.14",
"eslint-plugin-vue": "^9.17.0",
"prettier": "^3.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.68.0",
"semantic-release": "^22.0.5",
"storybook": "7.4.5",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.6.0",
"vue": "^3.0.0",
"vuetify": "^3.3.19"
}
}