UNPKG

587 BJSONView Raw
1{
2 "name": "@nuxt/typescript-runtime",
3 "version": "0.2.8",
4 "description": "Nuxt.js TypeScript Runtime support",
5 "repository": "nuxt/typescript",
6 "license": "MIT",
7 "files": [
8 "bin",
9 "dist"
10 ],
11 "bin": {
12 "nuxt-ts": "bin/nuxt-ts.js",
13 "nuxts": "bin/nuxt-ts.js"
14 },
15 "main": "dist/index.js",
16 "scripts": {
17 "build": "yarn run clean && yarn compile",
18 "clean": "rm -rf dist",
19 "compile": "tsc"
20 },
21 "dependencies": {
22 "@nuxt/types": "0.5.1",
23 "ts-node": "^8.5.4",
24 "typescript": "~3.6"
25 },
26 "publishConfig": {
27 "access": "public"
28 }
29}