UNPKG

618 BJSONView Raw
1{
2 "name": "@nuxt/typescript-runtime",
3 "version": "2.1.0",
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 "ts-node": "^9.1.1",
23 "typescript": "~4.2"
24 },
25 "peerDependencies": {
26 "@nuxt/types": ">=2.13.1"
27 },
28 "publishConfig": {
29 "access": "public"
30 }
31}