-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
126 lines (126 loc) · 3.56 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@morev/vue-transitions",
"description": "Shareable Vue transitions library",
"version": "2.3.5",
"private": true,
"workspaces": [
"builders/*"
],
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": {
"name": "Maxim Morev",
"email": "max.seainside@gmail.com"
},
"contributors": [
{
"name": "Andrey Litvinov",
"email": "fro1d616@gmail.com"
}
],
"homepage": "https://github.com/MorevM/vue-transitions#readme",
"repository": {
"type": "git",
"url": "https://github.com/MorevM/vue-transitions"
},
"keywords": [
"vue",
"transition",
"animation"
],
"files": [
"dist",
"vetur",
"types",
"bin",
"scripts",
"nuxt"
],
"bin": {
"vue-transitions-version-fix": "bin/fix.js",
"vue-transitions-version-switch": "bin/switch.js"
},
"exports": {
".": {
"import": "./dist/vue-transitions.es.js",
"require": "./dist/vue-transitions.cjs.js"
},
"./vue2": {
"import": "./dist/vue2/vue-transitions.es.js",
"require": "./dist/vue2/vue-transitions.cjs.js"
},
"./vue3": {
"import": "./dist/vue3/vue-transitions.es.js",
"require": "./dist/vue3/vue-transitions.cjs.js"
},
"./nuxt": {
"import": "./nuxt/module.mjs",
"require": "./nuxt/module.cjs"
},
"./styles": "./dist/index.css"
},
"main": "./dist/vue-transitions.cjs.js",
"module": "./dist/vue-transitions.es.js",
"browser": "./dist/vue-transitions.umd.js",
"types": "types/index.d.ts",
"scripts": {
"prepack": "node ./scripts/prepack.js",
"postpublish": "node ./scripts/postpublish.js",
"dev": "yarn workspace vue2-builder dev",
"build:playground": "yarn workspace vue2-builder playground",
"build:vue2": "yarn workspace vue2-builder build",
"build:vue3": "yarn workspace vue3-builder build",
"build:nuxt": "node ./scripts/nuxt-module-build.mjs",
"build": "yarn build:playground && yarn build:vue2 && yarn build:vue3 && yarn build:nuxt",
"prepare": "husky install ./.husky && yarn more-sass-clone",
"vscode-settings": "cp .vscode/settings.template.json .vscode/settings.json",
"more-sass-clone": "rm -rf .more-sass && cp -r ./node_modules/more-sass ./.more-sass",
"release": "release-it --disable-metrics",
"lint": "yarn lint:eslint && yarn lint:stylelint",
"lint:fix": "yarn lint:eslint:fix && yarn lint:stylelint:fix",
"lint:eslint": "eslint \"**/*.{js,ts,vue,json,json5,jsonc,yml,yaml,md}\"",
"lint:eslint:fix": "eslint \"**/*.{js,ts,vue,json,json5,jsonc,yml,yaml}\" --fix",
"lint:stylelint": "stylelint \"**/*.{css,scss}\" --allow-empty-input",
"lint:stylelint:fix": "stylelint \"**/*.{css,scss}\" --fix --allow-empty-input",
"test": "jest --coverage",
"test:dev": "jest --watch"
},
"peerDependencies": {
"vue": "^2.6.14 || >=3"
},
"dependencies": {
"@morev/utils": "^2.0.3",
"@nuxt/kit": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@morev/commitlint-config": "^0.1.1",
"@morev/eslint-config": "^19.0.1",
"@morev/stylelint-config": "^2.1.0",
"@nuxt/schema": "^3.0.0",
"@release-it/conventional-changelog": "^5.1.1",
"@types/jest": "^29.2.3",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"release-it": "^15.5.0",
"sass": "^1.56.1",
"stylelint": "^14.15.0",
"terser": "^5.15.1",
"typescript": "^4.9.3",
"unbuild": "^1.0.1",
"vite": "^3.2.4",
"vue-types": "^4.2.1"
},
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
}
}