-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "@juitnow/vue-ts-checker",
"version": "1.0.0",
"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.14.2",
"@babel/types": "^7.14.2",
"@vue/compiler-sfc": "^3.0.11",
"source-map": "=0.6.1"
},
"optionalDependencies": {
"webpack": "^5.37.0"
},
"devDependencies": {
"@types/babel__generator": "^7.6.2",
"@types/estree": "0.0.47",
"@types/node": "<15.0.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-deprecation": "^1.2.1",
"typescript": "^4.2.4",
"vue": "^3.0.11",
"webpack": "^5.37.0"
}
}