-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 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
{
"name": "split-views",
"version": "3.0.2",
"description": "A lightweight, zero-dependency TypeScript library for creating resizable split views (panes) in web applications.",
"private": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"browser": "./dist/index.umd.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite",
"preview": "vite preview",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"devDependencies": {
"@types/node": "^24.3.0",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vite-plugin-dts": "^4.5.4"
},
"keywords": [
"resizer",
"pane",
"split",
"view",
"utility",
"split panes",
"resize panes",
"split.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wutility/split-views.git"
},
"bugs": {
"url": "https://github.com/wutility/split-views.git/issues"
},
"homepage": "https://github.com/wutility/split-views.git#readme",
"license": "MIT"
}