UNPKG

635 BJSONView Raw
1{
2 "name": "@nuxt/typescript-build",
3 "version": "1.0.0",
4 "description": "Nuxt.js TypeScript support",
5 "repository": "nuxt/typescript",
6 "license": "MIT",
7 "files": [
8 "dist"
9 ],
10 "main": "dist/index.js",
11 "types": "dist/index.d.ts",
12 "scripts": {
13 "build": "yarn run clean && yarn compile",
14 "clean": "rm -rf dist",
15 "compile": "tsc"
16 },
17 "dependencies": {
18 "@nuxt/types": "0.7.6",
19 "consola": "^2.12.1",
20 "fork-ts-checker-webpack-plugin": "^4.1.4",
21 "ts-loader": "^7.0.4",
22 "typescript": "~3.8"
23 },
24 "publishConfig": {
25 "access": "public"
26 },
27 "engines": {
28 "node": ">=8.6.0"
29 }
30}