-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.57 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
{
"name": "vue-mentions",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:docs": "pnpm --filter ./packages/docs dev",
"dev:core": "pnpm --filter ./packages/core build --watch",
"dev:example": "pnpm --filter ./packages/example dev",
"dev:vue": "concurrently \"pnpm run dev:core\" \"pnpm --filter ./packages/vue dev\"",
"dev": "concurrently \"pnpm run dev:core\" \"pnpm run dev:example\"",
"build": "pnpm --filter ./packages/core build",
"build:docs": "pnpm --filter ./packages/docs build",
"preview:docs": "pnpm --filter ./packages/docs preview",
"prepare": "husky install",
"test:core": "pnpm --filter ./packages/core test",
"test:coverage:core": "pnpm --filter ./packages/core coverage",
"release": "pnpm --filter ./packages/core release"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"commitizen": "^4.3.0",
"concurrently": "^8.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.41.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.13.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{vue,ts,js}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}