-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "@juit/vue-ts-checker",
"version": "1.0.6",
"description": "Simple TypeScript checker for Vue single file components",
"main": "dist/index.js",
"bin": {
"vue-ts-checker": "dist/main.js"
},
"scripts": {
"build": "npm run compile && npm run lint",
"compile": "rm -rf dist/ && tsc",
"lint": "eslint --ext .js --ext .ts src",
"watch": "nodemon -w src -e ts,js -x 'npm run build'"
},
"author": "Pier Fumagalli <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.15.4",
"@babel/types": "^7.15.4",
"@vue/compiler-sfc": ">=3",
"source-map": "=0.6.1"
},
"optionalDependencies": {
"webpack": "^5.52.0"
},
"devDependencies": {
"@types/babel__generator": "^7.6.3",
"@types/estree": "0.0.47",
"@types/node": "<15.0.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@vue/compiler-sfc": "^3.2.9",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-deprecation": "^1.2.1",
"typescript": "^4.4.2",
"vue": "^3.2.9",
"webpack": "^5.52.0"
}
}