-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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
{
"name": "vue-fit-next",
"version": "0.3.7",
"description": "Vue directive with fit screen kit 一个屏幕自适应工具集合的vue指令, 具有拖拽、缩放、入场出场动画",
"author": "pasbone",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pasBone/vue-fit-next.git"
},
"bugs": {
"url": "https://github.com/pasBone/vue-fit-next/issues"
},
"keywords": [
"vue",
"big screen",
"adaptation screen",
"drag scale",
"大屏适配工具集"
],
"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",
"dev": "pkgroll --watch",
"play": "vite playground --open",
"play:2.x": "vite playground-2.x --open",
"play:build": "vite build playground",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"test": "vitest",
"release": "bumpp --commit --tag --push && pnpm publish"
},
"dependencies": {
"rxjs": "^7.5.6",
"vue": "^3.2.37"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@types/node": "^17.0.43",
"eslint": "^8.17.0",
"pkgroll": "^1.3.1",
"pnpm": "^7.2.1",
"typescript": "^4.7.3",
"vite": "^2.9.12",
"vitest": "^0.15.1",
"vue-tsc": "^0.37.8"
}
}