-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "columns-resize",
"description": "A tiny dependency-free library to create flex-based table-like layouts, which can be resized by user",
"keywords": [
"columns",
"resize",
"flex"
],
"author": "Ivan Che",
"version": "0.1.6",
"type": "module",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/gVguy/columns-resize.git"
},
"bugs": {
"url": "https://github.com/gVguy/columns-resize/issues"
},
"main": "dist/columns-resize.js",
"browser": "dist/columns-resize.js",
"module": "dist/columns-resize.js",
"unpkg": "dist/columns-resize.min.js",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build:demo": "tsc && vite build --outDir dist-demo --base ./",
"build": "rollup -c",
"publish:demo": "gh-pages -d dist-demo",
"prepublish:demo": "npm run build:demo",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.1",
"gh-pages": "^5.0.0",
"rollup": "^3.20.7",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.2",
"vite": "^4.3.0"
}
}