-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "ss-paging-vue",
"version": "3.0.0-rc.1",
"description": "SSPaging: A Full Server-side pagination library for Vue.js",
"main": "index.js",
"directories": {},
"files": [
"!components/node_modules",
"components",
"dist",
"src",
"module.d.ts",
"README.md"
],
"type": "module",
"types": "module.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"paging:build": "rollup --config --bundleConfigAsCjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adnzaki/ss-paging.git"
},
"keywords": [
"vue",
"pagination",
"paging",
"pinia"
],
"author": "Adnan Zaki",
"license": "MIT",
"bugs": {
"url": "https://github.com/adnzaki/ss-paging/issues"
},
"homepage": "https://lib.actudent.com/ss-paging",
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"typescript": "^5.7.3",
"vitepress": "^1.5.0",
"vue": "^3.5.13"
},
"dependencies": {
"pinia": "^2.3.0",
"tslib": "^2.8.1"
}
}