@nuxt/typescript-build
Version:
Nuxt.js TypeScript support
33 lines (32 loc) • 678 B
JSON
{
"name": "@nuxt/typescript-build",
"version": "3.0.0",
"description": "Nuxt.js TypeScript support",
"repository": "nuxt/typescript",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn run clean && yarn compile",
"clean": "rm -rf dist",
"compile": "tsc"
},
"dependencies": {
"consola": "^2.15.3",
"fork-ts-checker-webpack-plugin": "^6.5.3",
"ts-loader": "^8.4.0"
},
"devDependencies": {
"typescript": "^4.9.5"
},
"peerDependencies": {
"@nuxt/types": ">=2.13.1",
"typescript": "4.x"
},
"publishConfig": {
"access": "public"
}
}