forked from vueuse/vueuse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 3.36 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
{
"name": "@vueuse/monorepo",
"version": "6.6.1",
"private": true,
"description": "Collection of essential Vue Composition Utilities",
"license": "MIT",
"author": "Anthony Fu<https://github.com/antfu>",
"scripts": {
"build": "nr update && esno scripts/build.ts",
"build:redirects": "esno scripts/redirects.ts",
"build:rollup": "cross-env NODE_OPTIONS=\"--max-old-space-size=6144\" rollup -c",
"build:types": "tsc --emitDeclarationOnly && nr types:fix",
"clean": "rimraf dist types packages/*/dist",
"dev": "nr update && nr docs",
"docs": "vitepress dev packages",
"docs:serve": "vitepress serve packages",
"docs:build": "nr update:full && vitepress build packages && nr build:redirects && esno scripts/post-docs.ts",
"lint": "eslint './{packages,scripts,meta}/**/*.{js,ts,tsx,vue,md,json}'",
"lint:fix": "nr lint --fix",
"publish:ci": "esno scripts/publish.ts",
"release": "esno scripts/release.ts && git push --follow-tags",
"size": " esno scripts/export-size.ts",
"test": "nr test:3",
"test:2": "vue-demi-switch 2 vue2 && jest",
"test:3": "vue-demi-switch 3 && jest",
"test:all": "nr test:3 && nr test:2 && vue-demi-switch 3",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"types:fix": "esno scripts/fix-types.ts",
"update": "esno scripts/update.ts",
"update:full": "esno scripts/update.ts && nr build:types && nr update:recent",
"update:recent": "esno scripts/recently-updated.ts"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"{packages,.vitepress,scripts}/**/*.{js,ts,tsx,vue,md}": [
"eslint --fix"
]
},
"devDependencies": {
"@antfu/eslint-config": "^0.10.0",
"@antfu/ni": "^0.10.0",
"@iconify/json": "^1.1.415",
"@rollup/plugin-replace": "^3.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/js-yaml": "^4.0.3",
"@types/node": "^16.11.0",
"@types/semver": "^7.3.8",
"@vue/compiler-sfc": "^3.2.20",
"@vue/composition-api": "^1.2.4",
"@vue/test-utils": "^1.2.2",
"axios": "^0.23.0",
"bumpp": "^7.1.1",
"consola": "^2.15.3",
"cross-env": "^7.0.3",
"dayjs": "^1.10.7",
"esbuild-register": "^3.0.0",
"eslint": "^8.0.1",
"eslint-plugin-jest": "^25.2.1",
"eslint-plugin-markdown": "^1.0.2",
"esno": "^0.10.1",
"export-size": "^0.4.0",
"fast-glob": "^3.2.7",
"firebase": "^8.9.1",
"fs-extra": "^10.0.0",
"gray-matter": "^4.0.3",
"jest": "^27.2.5",
"jest-each": "^27.2.5",
"jest-fetch-mock": "^3.0.3",
"js-yaml": "^4.1.0",
"lint-staged": "^11.2.3",
"markdown-table": "^3.0.1",
"pnpm": "^6.17.2",
"postcss": "^8.3.9",
"postcss-nested": "^5.0.6",
"prettier": "^2.4.1",
"prism-theme-vars": "^0.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-esbuild": "^4.6.0",
"simple-git": "^2.46.0",
"simple-git-hooks": "^2.6.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4",
"unplugin-icons": "^0.12.16",
"unplugin-vue-components": "^0.15.6",
"vite": "^2.6.7",
"vite-plugin-pwa": "^0.11.3",
"vite-plugin-windicss": "^1.4.11",
"vitepress": "^0.20.0",
"vue": "^3.2.20",
"vue-demi": "^0.11.4",
"vue2": "npm:vue@2"
},
"pnpm": {
"neverBuiltDependencies": [
"electron"
]
}
}