-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.9 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
{
"name": "@anime-skip/ui",
"version": "3.1.5",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/anime-skip/ui",
"author": "Aaron Klinker <[email protected]>",
"types": "index.d.ts",
"main": "ui.umd.js",
"module": "ui.es.js",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"compile": "vue-tsc --noEmit",
"start": "vite",
"build": "pnpm compile && ./scripts/build.sh",
"lint": "pnpm lint:check --fix",
"lint:check": "eslint src --ext .ts,.vue --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"pack:local": "pnpm build && cd lib && pnpm pack && cd .."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@seregpie/vue-resize-sensor": "^1.1.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@tailwindcss/line-clamp": "^0.2.2",
"@types/node": "^16",
"@types/tailwindcss": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-vue": "^1.10.1",
"@vitejs/plugin-vue-jsx": "^1.3.0",
"@vue/compiler-sfc": "^3.2.23",
"autoprefixer": "^10.4.1",
"eslint": "^8.3.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-vue": "^8.1.1",
"husky": "^7.0.4",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.2",
"rollup-plugin-typescript2": "^0.31.1",
"sass": "^1.45.1",
"tailwindcss": "^3.0.8",
"tailwindcss-export-config": "^2.3.0",
"typescript": "^4.5.2",
"vite": "^2.7.7",
"vue": "^3.2.23",
"vue-router": "^4.0.12",
"vue-tsc": "^0.29.6"
},
"peerDependencies": {
"@tailwindcss/line-clamp": "^0.2.1",
"autoprefixer": "^10.2.4",
"postcss": "^8.2.6",
"vue": ">=3.0.5",
"vue-router": ">=4.0.10"
}
}