babel-plugin-show-source-ts
Version:
Explicit Function.prototype.toString() via Babel
53 lines (52 loc) • 1.38 kB
JSON
{
"name": "babel-plugin-show-source-ts",
"version": "0.1.0",
"license": "MIT",
"description": "Explicit Function.prototype.toString() via Babel",
"author": {
"name": "Nouvistiardi",
"email": "hello@nouvist.cyou",
"url": "https://nouvist.cyou"
},
"repository": {
"type": "git",
"url": "https://github.com/nouvist/babel-plugin-show-source.git"
},
"keywords": [
"babel-plugin",
"show-source",
"to-string",
"babel-plugin-show-source"
],
"main": "./build/main.js",
"types": "./types/main.d.ts",
"scripts": {
"dev": "jest",
"dev:watch": "jest --watch",
"prepublish": "pnpm build",
"build": "pnpm build:clean && pnpm build:babel && pnpm build:tsc",
"build:clean": "rimraf ./build && rimraf ./types",
"build:babel": "babel -x .ts -d ./build ./src",
"build:tsc": "tsc"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/babel__core": "^7.1.19",
"@types/babel__generator": "^7.6.4",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"jest": "^28.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@babel/core": "^7"
},
"dependencies": {
"@babel/generator": "^7.18.7",
"babel-remove-types": "^1.0.1"
}
}