This repository was archived by the owner on May 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.22 KB
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
{
"name": "vue-interact",
"description": "Interact.js wrapper for VueJS",
"version": "2.1.4",
"author": "Kimura <joseduardo.kimura@gmail.com>",
"private": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-interact.js",
"require": "./dist/vue-interact.umd.cjs"
}
},
"types": "./dist/index.d.ts",
"module": "./dist/vue-interact.js",
"main": "./dist/vue-interact.umd.cjs",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "vite build",
"lint": "eslint --ext .ts src --no-fix",
"lint:fix": "eslint --ext .ts src --fix",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "jest --coverage",
"test:ci": "jest --ci --coverage",
"prepare": "husky"
},
"dependencies": {
"interactjs": "^1.10.27"
},
"peerDependencies": {
"interactjs": "^1.10.27",
"vue": "^3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.28.0",
"@eslint/json": "^0.12.0",
"@interactjs/types": "^1.10.27",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vitejs/plugin-vue": "^5.1.2",
"@vuepress/bundler-vite": "2.0.0-rc.15",
"@vuepress/plugin-container": "2.0.0-rc.28",
"@vuepress/plugin-register-components": "2.0.0-rc.37",
"@vuepress/theme-default": "2.0.0-rc.41",
"esbuild": "^0.18.17",
"eslint": "^9.28.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^10.2.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"typescript-eslint": "^8.33.1",
"vite": "^5.4.1",
"vite-plugin-dts": "^4.0.3",
"vue": "^3.4.38",
"vuepress": "2.0.0-rc.15",
"vuepress-theme-reco": "2.0.0-rc.18"
},
"engines": {
"node": ">= 20.0.0",
"npm": ">= 9.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}