-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "@lucien144/vue3-parallaxy",
"description": "Lightweight yet powerful parallax component for Vue3.",
"version": "0.1.2",
"license": "MIT",
"private": false,
"main": "dist/vue3-parallaxy.umd.js",
"module": "dist/vue3-parallaxy.mjs",
"homepage": "https://parallaxy.144.wtf/",
"repository": {
"type": "git",
"url": "https://github.com/lucien144/vue3-parallaxy"
},
"files": ["dist/**/*"],
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"build-only:lib": "vite --config vite.config.lib.ts build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^18.11.12",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.13",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"shx": "^0.3.4",
"tailwindcss": "^3.2.7",
"typescript": "~4.7.4",
"vite": "^4.0.0",
"vite-plugin-plain-text": "^1.4.2",
"vite-plugin-vue-markdown": "^0.22.4",
"vue": "^3.2.45",
"vue-tsc": "^1.0.12"
},
"keywords": [
"parallax",
"component",
"vue",
"vue3"
]
}