-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "vue3-tui-grid",
"private": false,
"version": "0.1.3",
"description": "vue3-tui-grid is a Vue.js component library for tui-grid(NHN) https://github.com/nhn/tui.grid",
"keywords": [
"tui-grid",
"vue3-grid",
"vue3-tui-grid"
],
"author": {
"email": "bookyoon173@gmail.com",
"name": "ohah",
"url": "https://github.com/ohah/vue3-tui-grid"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./style.css": "./dist/style.css"
},
"browser": {
"./style.css": "./dist/style.css"
},
"license": "MIT",
"files": [
"dist"
],
"types": "./dist/TuiGridPlugin.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/ohah/vue3-tui-grid"
},
"contributors": [
"ohah"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"tui-grid": "^4.21.2",
"vue": "^3.2.37"
},
"devDependencies": {
"@types/node": "^18.0.5",
"@vitejs/plugin-vue": "^3.0.0",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.7.4",
"vite": "^3.0.0",
"vue-tsc": "^0.38.5"
}
}