forked from vueuse/vueuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.97 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
{
"name": "@vueuse/core",
"version": "4.0.0-beta.15",
"description": "Collection of essential Vue Composition API",
"scripts": {
"build": "node ./scripts/build",
"release": "npm run readme:update && bump --commit --tag --push --preid beta",
"release:gh": "conventional-github-releaser -p angular",
"release:local": "npm run readme:update && bump --commit --tag --preid beta && npm run publish:ci",
"publish:ci": "node ./scripts/publish.js",
"import:generate": "node ./scripts/import",
"types:fix": "node ./scripts/types-fix",
"types:generate": "tsc --emitDeclarationOnly && npm run types:fix",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint './{packages,.storybook,scripts}/**/*.{js,ts,tsx,vue,md}'",
"lint:fix": "npm run lint -- --fix",
"readme:update": "node ./scripts/updateReadme && git add '*/README.md'",
"clean": "rimraf dist types typings storybook-static",
"dev": "start-storybook -p 6006",
"storybook": "start-storybook -p 6006",
"storybook:build": "npm run import:generate && npm run types:generate && build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{packages,.storybook,scripts}/**/*.{js,ts,tsx,vue,md} *.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/vueuse.git"
},
"keywords": [
"vue",
"vue-use",
"utils"
],
"author": "Anthony Fu<https://github.com/antfu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antfu/vueuse/issues"
},
"homepage": "https://github.com/antfu/vueuse#readme",
"dependencies": {
"vue-demi": "^0.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.3.2",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^5.0.2",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addon-notes": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/theming": "^5.3.19",
"@storybook/vue": "^5.3.19",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^7.3.0",
"@types/jest": "^26.0.10",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.6.0",
"@types/resize-observer-browser": "^0.1.3",
"@types/semver": "^7.3.3",
"@vue/babel-preset-jsx": "^1.1.2",
"@vue/runtime-dom": "^3.0.0-rc.5",
"@vue/test-utils": "^1.0.4",
"autoprefixer": "^9.8.6",
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"babel-preset-vue": "^2.0.2",
"commander": "^6.0.0",
"consola": "^2.15.0",
"conventional-github-releaser": "^3.1.5",
"dayjs": "^1.8.33",
"eslint": "^7.7.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-markdown": "^1.0.2",
"fast-glob": "^3.2.4",
"firebase": "^7.18.0",
"fs-extra": "^9.0.1",
"github-markdown-css": "^4.0.0",
"husky": "^4.2.5",
"inquirer": "^7.3.3",
"jest": "^26.4.0",
"js-yaml": "^3.14.0",
"lint-staged": "^10.2.11",
"markdown-it": "^11.0.0",
"markdown-it-highlight-lines": "^1.0.2",
"markdown-it-link-attributes": "^3.0.0",
"markdown-it-loader": "^0.7.0",
"markdown-it-prism": "^2.1.1",
"postcss": "^7.0.32",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"prismjs": "^1.21.0",
"raw-loader": "^4.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.26.4",
"rollup-plugin-dts": "^1.4.10",
"rollup-plugin-typescript2": "^0.27.2",
"rollup-plugin-uglify": "^6.0.4",
"tailwindcss": "^1.7.1",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7",
"version-bump-prompt": "^6.0.6",
"vue": "^2.6.11",
"vue-i18n": "^8.21.0",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.11",
"vue-tsx-support": "^2.3.3"
}
}