-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.6 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@axios-use/list-vue",
"version": "0.1.0",
"description": "A list component used to display items and control loading status.",
"type": "module",
"main": "./lib/index.cjs",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"unpkg": "./dist/list-vue.umd.js",
"files": [
"dist",
"lib",
"esm"
],
"scripts": {
"build": "rimraf dist lib esm; npm run build:js; npm run build:type",
"build:js": "vite build",
"build:type": "vue-tsc --project ./tsconfig.lib.json --outDir ./esm --emitDeclarationOnly",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/@axios-use/list-vue.git"
},
"keywords": [
"vue",
"list",
"vue-list",
"infinite-list",
"scroll"
],
"author": "wangcch <wangcch.cc@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/@axios-use/list-vue/issues"
},
"homepage": "https://github.com/@axios-use/list-vue#readme",
"peerDependencies": {
"vue": ">=3.0.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.3",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^20.14.12",
"@vitejs/plugin-vue": "^5.1.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.5",
"typescript": "^5.5.4",
"vue": "^3.4.31",
"vue-tsc": "^2.0.29"
}
}