-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "paginate-next",
"version": "1.0.1",
"description": "Successor of paginationjs, rewritten in TypeScript without JQuery dependency",
"keywords": [
"pagination"
],
"homepage": "https://github.com/lofcz/paginationts#readme",
"bugs": {
"url": "https://github.com/lofcz/paginationts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lofcz/paginationts.git"
},
"license": "MIT",
"author": "Matěj \"lofcz\" Štágl",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "vite demo",
"build": "npx rollup --config rollup.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"demobuild": "vite build demo"
},
"files": [
"dist/",
"package.json",
"README.md"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"fs-extra": "^11.3.0",
"rollup": "^4.31.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sass": "^1.15.2",
"rollup-plugin-scss": "^4.0.1",
"sass": "^1.83.4",
"terser": "^5.37.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-copy": "^0.1.6",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-mkcert": "^1.17.6"
}
}