-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
executable file
·83 lines (83 loc) · 2.3 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "el-table-infinite-scroll",
"keywords": [
"table-infinite-scroll",
"el-table",
"infinite-scroll",
"element-plus"
],
"version": "3.0.6",
"author": "yujinpan",
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"version": "npm run build",
"postversion": "git push --all && git push --tags",
"dev": "vite",
"publish:beta": "release-ops beta",
"publish:patch": "release-ops patch",
"build": "rollupx",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"dependencies": {
"core-js": "^3.x",
"element-plus": "^2.x",
"vue": "^3.x"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/jsdom": "*",
"@types/node": "*",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.2",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.0.0",
"jsdom": "^20.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2",
"release-ops": "^1.0.1",
"rollup": "^4.18.0",
"rollupx": "^3.1.12",
"sass": "^1.54.0",
"typescript": "~5.4.5",
"vite": "^5.2.12",
"vitepress": "^1.2.2",
"vitepress-plugin-component-demo": "^1.0.1",
"vitest": "^1.6.0",
"vue": "^3.2.37",
"vue-tsc": "^0.38.8"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "https://github.com/yujinpan/el-table-infinite-scroll/issues"
},
"homepage": "https://github.com/yujinpan/el-table-infinite-scroll#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:yujinpan/el-table-infinite-scroll.git"
}
}