-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 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
{
"name": "mouse-element",
"version": "0.0.7",
"packageManager": "pnpm@6.32.3",
"description": "mouse-element",
"author": "Simon He",
"license": "MIT",
"repository": {
"type": "git",
"url": "git + git@github.com:Simon-He95/mouse-element.git"
},
"bugs": {
"url": "https://github.com/Simon-He95/mouse-element/issues"
},
"keywords": [
"mouse-element",
"vue"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pkgroll --minify",
"dev": "pkgroll --watch",
"play": "pnpm run -C playground dev",
"play:build": "pnpm run -C playground build",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"typecheck": "vue-tsc --noEmit",
"test": "vitest --dir test -u",
"ptest": "pnpm run -C playground test -u",
"preview": "pnpm run -C playground preview",
"test:e2e": "cypress open",
"prepublishOnly": "nr build",
"release": "bumpp --commit --tag --push && git push origin --tags -f && npm publish"
},
"dependencies": {
"@vueuse/core": "^8.1.1",
"lazy-js-utils": "^0.0.63",
"vue": "^3.2.36"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@types/node": "^17.0.38",
"@vitejs/plugin-vue": "^3.0.1",
"bumpp": "^7.1.1",
"eslint": "^8.16.0",
"eslint-plugin-n": "^15.2.1",
"pkgroll": "^1.3.1",
"typescript": "^4.7.2",
"vite": "^3.0.2",
"vitest": "^0.13.1"
},
"eslintConfig": {
"extends": "@antfu"
}
}