-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "rs-grid",
"description": "a draggable and resizable vue grid component.",
"version": "1.0.2",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.jsx,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"main": "./dist/rs-grid.umd.cjs",
"module": "./dist/rs-grid.js",
"exports": {
".": {
"import": "./dist/rs-grid.js",
"require": "./dist/rs-grid.umd.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"repository": {
"type": "git",
"url": "https://github.com/moussa-rs/rs-grid.git"
},
"types": "types/index.d.ts",
"dependencies": {
"@interactjs/actions": "1.10.17",
"@interactjs/auto-scroll": "1.10.17",
"@interactjs/auto-start": "1.10.17",
"@interactjs/dev-tools": "1.10.17",
"@interactjs/interactjs": "1.10.17",
"@interactjs/modifiers": "1.10.17",
"element-resize-detector": "^1.2.1",
"mitt": "^3.0.0",
"vue": "^3.2.47"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@types/node": "^18.14.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.34.0",
"eslint-plugin-vue": "^9.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"typescript": "~4.8.4",
"vite": "^4.1.4",
"vue-tsc": "^1.2.0"
}
}