@ainc/script
Version:
Script compiler for typescript
56 lines (55 loc) • 1.65 kB
JSON
{
"name": "@ainc/script",
"version": "0.1.22",
"keywords": [
"script",
"complier",
"typescript",
"run",
"execute"
],
"description": "Script compiler for typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"esc": "bin/cli.js"
},
"files": [
"src",
"bin",
"dist"
],
"scripts": {
"start": "yarn watch",
"build": "yarn compile",
"watch": "esc -p ./src -w",
"compile": "bash ./scripts/build.sh",
"test": "jest",
"prepublishOnly": "yarn build",
"clean": "rm -rf ./dist"
},
"repository": "git@absock.net:repo/ainc/script.git",
"author": "edonet <edonet@163.com>",
"license": "MIT",
"dependencies": {
"@ainc/fs": "^0.1.15",
"@ainc/stdout": "^0.0.1",
"@babel/core": "^7.16.7",
"@babel/helper-plugin-utils": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-proposal-dynamic-import": "^7.16.7",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.7",
"@babel/plugin-transform-react-jsx": "^7.16.7",
"@babel/plugin-transform-typescript": "^7.16.7",
"chokidar": "^3.5.2",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/babel__core": "^7.1.18",
"@types/babel__helper-plugin-utils": "^7.10.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.5"
}
}