-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
97 lines (97 loc) · 2.58 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
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@variantjs/vue",
"version": "0.0.22",
"description": "Vue VariantJS: Fully configurable Vue 3 components styled with TailwindCSS",
"files": [
"dist/**/*",
"src/**/*"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"sideEffects": false,
"keywords": [
"tailwindcss",
"vue",
"vue-tailwind",
"variantjs",
"vue3"
],
"author": "Alfonso Bribiesca <alfonso@vexilo.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/variantjs/vue"
},
"license": "MIT",
"private": false,
"scripts": {
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"test": "jest -t",
"test:watch": "jest --watch -t",
"lint": "eslint src --fix",
"release": "release-it",
"demo": "vite --config ./vite.demo.config.ts",
"demo:build": "vite build --config ./vite.demo.config.ts",
"demo:serve": "vite preview --config ./vite.demo.config.ts"
},
"devDependencies": {
"@popperjs/core": "^2.11.0",
"@rollup/plugin-typescript": "^8.3.0",
"@tailwindcss/forms": "^0.4.0",
"@testing-library/vue": "^6.4.2",
"@types/body-scroll-lock": "^3.1.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/cli-plugin-unit-jest": "^5.0.0-rc.1",
"@vue/compiler-sfc": "^3.2.26",
"@vue/test-utils": "^2.0.0-rc.6",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"autoprefixer": "^10.4.0",
"body-scroll-lock": "^4.0.0-beta.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-tree-shaking": "^1.9.2",
"eslint-plugin-vue": "^8.2.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"release-it": "^14.11.8",
"tailwindcss": "^3.0.7",
"ts-jest": "^27.1.2",
"ts-vue-plugin": "^0.1.3",
"typescript": "^4.5.4",
"vite": "^2.7.7",
"vue": "^3.2.6",
"vue-loader": "^16.7.0",
"vue-router": "4",
"vue-tsc": "^0.30.1",
"vue3-jest": "^27.0.0-alpha.1"
},
"peerDependencies": {
"@popperjs/core": "^2.11.0",
"body-scroll-lock": "^4.0.0-beta.0",
"vue": "^3.2.6"
},
"release-it": {
"hooks": {
"before:init": [
"yarn lint",
"yarn test"
],
"after:bump": "yarn build"
}
},
"dependencies": {
"@variantjs/core": "^0.0.79"
}
}