|
| 1 | +{ |
| 2 | + "name": "bob-plugin-deepl-translate", |
| 3 | + "version": "0.1.0", |
| 4 | + "author": "Roy Li <me@dada.li>", |
| 5 | + "license": "MIT", |
| 6 | + "private": true, |
| 7 | + "scripts": { |
| 8 | + "clean": "rimraf build && rimraf release", |
| 9 | + "build": "run-s clean && cross-env NODE_ENV=production rollup -c rollup.config.js", |
| 10 | + "dev": "run-s clean && cross-env NODE_ENV=development rollup -c rollup.config.js --watch", |
| 11 | + "type-check": "tsc --noEmit", |
| 12 | + "bundle": "node scripts/bundle.js", |
| 13 | + "bundle:watch": "nodemon --watch build scripts/bundle.js" |
| 14 | + }, |
| 15 | + "dependencies": { |
| 16 | + "@rollup/plugin-commonjs": "^16.0.0", |
| 17 | + "@rollup/plugin-json": "^4.1.0", |
| 18 | + "@rollup/plugin-node-resolve": "^10.0.0", |
| 19 | + "@rollup/plugin-typescript": "^6.1.0", |
| 20 | + "@types/adm-zip": "^0.4.33", |
| 21 | + "@types/jsonfile": "^6.0.0", |
| 22 | + "@types/node": "^12", |
| 23 | + "@typescript-eslint/eslint-plugin": "^4.8.0", |
| 24 | + "@typescript-eslint/parser": "^4.8.0", |
| 25 | + "adm-zip": "^0.4.16", |
| 26 | + "cross-env": "^7.0.2", |
| 27 | + "esbuild": "^0.7.22", |
| 28 | + "eslint": "^7.13.0", |
| 29 | + "eslint-plugin-prettier": "^3.1.4", |
| 30 | + "form-data": "^3.0.0", |
| 31 | + "fs-extra": "^9.0.1", |
| 32 | + "nodemon": "^2.0.6", |
| 33 | + "npm-run-all": "^4.1.5", |
| 34 | + "prettier": "^2.1.2", |
| 35 | + "rollup": "^2.28.2", |
| 36 | + "rollup-plugin-copy": "^3.3.0", |
| 37 | + "rollup-plugin-node-polyfills": "^0.2.1", |
| 38 | + "ts-node": "^9.0.0", |
| 39 | + "tslib": "^2.0.3", |
| 40 | + "type-fest": "^0.19.0", |
| 41 | + "typescript": "^4.0.5" |
| 42 | + }, |
| 43 | + "nodemonConfig": { |
| 44 | + "ignore": [ |
| 45 | + "build/info.json" |
| 46 | + ] |
| 47 | + } |
| 48 | +} |
0 commit comments