-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.24 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
84
85
86
87
88
89
90
91
{
"name": "@any-design/file-tree",
"version": "0.2.2",
"main": "dist/file-tree.umd.js",
"module": "dist/file-tree.es.js",
"keywords": [
"file tree",
"file",
"tree",
"draggable",
"editable",
"create folder",
"create file",
"vue3",
"vue",
"vuejs"
],
"files": [
"dist"
],
"types": "dist/file-tree.es.d.ts",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint ./packages --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint-fix": "eslint --ext .js,.vue,.ts ./packages --fix"
},
"dependencies": {
"vue": "^3.4.21"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.1",
"@rushstack/eslint-patch": "^1.10.0",
"@tsconfig/node18": "^18.2.4",
"@types/jsdom": "^21.1.6",
"@types/node": "^18.19.26",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.57.0",
"eslint-config-alloy": "^5.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.24.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"prettier": "^3.2.5",
"typescript": "~5.1.6",
"vite": "^4.5.3",
"vite-plugin-dts": "^3.8.1",
"vitest": "^0.34.6",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^1.8.27"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zitiger/markhu-file-tree.git"
},
"author": "zitiger",
"license": "MIT",
"maintainers": [
"backrunner"
],
"bugs": {
"url": "https://github.com/zitiger/markhu-file-tree/issues"
},
"homepage": "https://github.com/zitiger/markhu-file-tree",
"tfelint": {
"type": "vue3_ts",
"features": [
"git-hook",
"prettier",
"auto-format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
".{js,vue,ts}": "eslint --cache --fix"
}
}