-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1004 Bytes
/
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
{
"name": "@itoxiq/vue-tsc-files",
"version": "1.2.0",
"description": "A tiny tool to run vue-tsc on specific files without ignoring tsconfig.json",
"author": "Moritz Reisinger <https://github.com/iToXiQ>",
"repository": {
"type": "git",
"url": "https://github.com/iToXiQ/vue-tsc-files.git"
},
"license": "MIT",
"files": [
"bin"
],
"main": "./bin/cli.js",
"bin": {
"vue-tsc-files": "./bin/cli.js"
},
"keywords": [
"vue-tsc",
"tsc",
"tsc-files",
"vue-tsc-files",
"lint-staged"
],
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"vue-tsc": "^2.0.6"
},
"devDependencies": {
"@json-types/tsconfig": "^0.2.0",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.10.0",
"rollup": "^4.6.0",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}