Skip to content

Commit 4f6ff4b

Browse files
better package.json and add vuepress
1 parent 58b8b26 commit 4f6ff4b

File tree

3 files changed

+7707
-3
lines changed

3 files changed

+7707
-3
lines changed

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.DS_Store
2-
node_modules/
3-
dist/vuecontentloading.js
4-
dist/vuecontentloading.js.map
2+
node_modules
3+
dist
54
npm-debug.log
65
yarn-error.log
76

package.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "vue-content-loading",
3+
"description": "Vue component to easily build (or use presets) SVG loading cards Facebook like.",
4+
"version": "2.0.0",
5+
"author": {
6+
"name": "Lucas Leandro",
7+
"url": "https://lucasleandro.dev",
8+
"email": "[email protected]"
9+
},
10+
"license": "MIT",
11+
"private": false,
12+
"files": [
13+
"dist/"
14+
],
15+
"cdn": "dist/vue-content-loading.js",
16+
"main": "dist/vue-content-loading.cjs.js",
17+
"unpkg": "dist/vue-content-loading.js",
18+
"module": "dist/vue-content-loading.es.js",
19+
"jsdelivr": "dist/vue-content-loading.js",
20+
"umd:main": "dist/vue-content-loading.js",
21+
"repository": {
22+
"type": "git",
23+
"url": "git+https://github.com/LucasLeandro1204/vue-content-loading.git"
24+
},
25+
"scripts": {
26+
"lint": "eslint --ext .vue,.js src/*",
27+
"lint:fix": "eslint --fix --ext .vue,.js src/*"
28+
},
29+
"keywords": [
30+
"ui",
31+
"ux",
32+
"svg",
33+
"vue",
34+
"card",
35+
"cards",
36+
"vuejs",
37+
"loading",
38+
"facebook",
39+
"animation",
40+
"loading-animations"
41+
],
42+
"devDependencies": {
43+
"vuepress": "^0.14.10"
44+
}
45+
}

0 commit comments

Comments
 (0)