-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.55 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
{
"//": [
"/**",
"* package.json - npm project configuration",
"*",
"* @version 3.1.0",
"* @package wp_theme_lyquix",
"* @author Lyquix",
"* @copyright Copyright (C) 2015 - 2024 Lyquix",
"* @license GNU General Public License version 2 or later",
"* @link https://github.com/Lyquix/wp_theme_lyquix",
"*",
"* .d8888b. 88888888888 .d88888b. 8888888b. 888",
"* d88P Y88b 888 d88P Y88b 888 Y88b 888",
"* Y88b. 888 888 888 888 888 888",
"* Y888b. 888 888 888 888 d88P 888",
"* Y88b. 888 888 888 8888888P 888",
"* 888 888 888 888 888 Y8P",
"* Y88b d88P 888 Y88b. .d88P 888 ",
"* Y8888P 888 Y88888P 888 888",
"*",
"* DO NOT MODIFY THIS FILE!",
"*/"
],
"name": "lyquix",
"version": "2.3.3",
"description": "Lyquix package configuration file",
"main": "index.js",
"author": "Lyquix",
"license": "GNU",
"type": "module",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@types/jquery": "^3.5.29",
"@types/node": "^20.11.28",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vue/cli": "^5.0.8",
"@vue/compiler-sfc": "^3.3.8",
"autoprefixer": "^10.4.18",
"critical": "^7.1.2",
"cssnano": "^6.1.0",
"eslint": "^8.57.0",
"gulp": "^4.0.2",
"gulp-livereload": "^4.0.2",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.0.0",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.4.32",
"postcss-cli": "^11.0.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"rollup": "^4.13.0",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.72.0",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"tailwind-layouts": "^0.3.0",
"tailwindcss": "^3.4.1",
"terser": "^5.29.2",
"typescript": "^5.4.2",
"vue": "^3.4.21"
},
"scripts": {
"postinstall": "chmod +x ./postinstall.sh && ./postinstall.sh",
"watch": "run-p watch:**",
"watch:lyquix": "rollup -c rollup.lyquix.js -w",
"watch:scripts": "rollup -c rollup.scripts.js -w",
"watch:gulp": "gulp"
}
}