forked from Djaler/vue-cli-plugin-esbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"name": "vue-cli-plugin-esbuild",
"version": "0.0.4",
"author": "Kirill Romanov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Djaler/vue-cli-plugin-esbuild"
},
"keywords": [
"vue",
"cli",
"esbuild"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"build": "tsc -p tsconfig.build.json",
"prerelease": "npm run lint && npm run build",
"release": "standard-version --preset @djaler/standard",
"release:github": "conventional-github-releaser -p @djaler/standard",
"publish": "npm run build && clean-publish"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"dependencies": {
"browserslist": "^4.16.3",
"esbuild-loader": "^2.10.0"
},
"peerDependencies": {
"@vue/cli-service": "^4.0.0-0",
"webpack-chain": "^6.4.0"
},
"devDependencies": {
"@djaler/conventional-changelog-standard": "1.2.0",
"@djaler/eslint-config-typescript": "0.0.5",
"@vue/cli-service": "4.5.11",
"clean-publish": "2.1.0",
"conventional-github-releaser": "3.1.5",
"eslint": "7.26.0",
"eslint-import-resolver-typescript": "2.4.0",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"standard-version": "9.1.1",
"typescript": "4.2.3",
"webpack-chain": "6.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
}
}