Files
Trilium/packages/splitjs/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2018-11-04 14:32:14 -07:00
{
2025-10-21 17:57:12 +03:00
"name": "@triliumnext/split.js",
"version": "1.6.5",
2020-06-10 14:04:08 +02:00
"description": "2kb unopinionated utility for resizeable split views",
2025-10-21 17:57:12 +03:00
"main": "src/split.js",
2020-06-10 18:47:40 +02:00
"types": "index.d.ts",
2020-06-10 14:04:08 +02:00
"repository": "https://github.com/nathancahill/split",
"keywords": [
"css",
"split",
"flexbox",
"tiny",
"split-layout"
],
"author": "Nathan Cahill <nathan@nathancahill.com>",
"license": "MIT",
"homepage": "https://split.js.org/",
"scripts": {
"test": "vitest run",
2020-06-10 14:04:08 +02:00
"prepublish": "rollup -c",
"build": "rollup -c",
"watch": "rollup -cw"
2020-06-10 14:04:08 +02:00
},
"files": [
2020-06-10 18:47:40 +02:00
"index.d.ts",
2020-06-10 14:04:08 +02:00
"dist"
],
"browserslist": [
"Chrome >= 22",
"Firefox >= 6",
"Opera >= 15",
"Safari >= 6.2",
2020-06-10 16:42:41 +02:00
"IE >= 9"
2020-06-10 14:04:08 +02:00
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/splitjs"
},
"devDependencies": {
"@rollup/plugin-buble": "1.0.3",
"happy-dom": "20.8.9",
"vitest": "4.1.2"
2020-06-10 14:04:08 +02:00
}
2018-11-04 14:32:14 -07:00
}