|
| 1 | +{ |
| 2 | + "name": "vue2-script-setup-transform", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "", |
| 5 | + "main": "dist/index.js", |
| 6 | + "module": "dist/index.mjs", |
| 7 | + "types": "dist/index.d.ts", |
| 8 | + "exports": { |
| 9 | + ".": { |
| 10 | + "require": "./dist/index.js", |
| 11 | + "import": "./dist/index.mjs" |
| 12 | + } |
| 13 | + }, |
| 14 | + "funding": "https://github.com/sponsors/antfu", |
| 15 | + "author": "Anthony Fu <anthonyfu117@hotmail.com>", |
| 16 | + "license": "MIT", |
| 17 | + "sideEffects": false, |
| 18 | + "bugs": { |
| 19 | + "url": "https://github.com/antfu/vue2-script-setup-transform/issues" |
| 20 | + }, |
| 21 | + "homepage": "https://github.com/antfu/vue2-script-setup-transform#readme", |
| 22 | + "repository": { |
| 23 | + "type": "git", |
| 24 | + "url": "git+https://github.com/antfu/vue2-script-setup-transform.git" |
| 25 | + }, |
| 26 | + "keywords": [], |
| 27 | + "files": [ |
| 28 | + "dist" |
| 29 | + ], |
| 30 | + "scripts": { |
| 31 | + "prepublishOnly": "nr build", |
| 32 | + "dev": "nr build --watch", |
| 33 | + "start": "esno src/index.ts", |
| 34 | + "build": "tsup src/index.ts --format cjs,esm --dts --no-splitting", |
| 35 | + "play": "npm -C playground run dev", |
| 36 | + "release": "bumpp --commit --push --tag && pnpm publish", |
| 37 | + "lint": "eslint \"{src,test}/**/*.ts\"", |
| 38 | + "lint:fix": "nr lint -- --fix", |
| 39 | + "test": "jest", |
| 40 | + "test:update": "jest -u" |
| 41 | + }, |
| 42 | + "devDependencies": { |
| 43 | + "@antfu/eslint-config": "^0.7.0", |
| 44 | + "@antfu/ni": "^0.7.0", |
| 45 | + "@types/jest": "^26.0.24", |
| 46 | + "@types/node": "^16.4.12", |
| 47 | + "bumpp": "^6.0.6", |
| 48 | + "eslint": "^7.32.0", |
| 49 | + "eslint-plugin-jest": "^24.4.0", |
| 50 | + "esno": "^0.8.0", |
| 51 | + "jest": "^27.0.6", |
| 52 | + "ts-jest": "^27.0.4", |
| 53 | + "tsup": "^4.13.1", |
| 54 | + "typescript": "^4.3.5" |
| 55 | + }, |
| 56 | + "dependencies": { |
| 57 | + "@babel/parser": "^7.15.3", |
| 58 | + "@babel/traverse": "^7.15.0", |
| 59 | + "@babel/types": "^7.15.0", |
| 60 | + "@vue/shared": "^3.2.4", |
| 61 | + "estree-walker": "^3.0.0", |
| 62 | + "htmlparser2": "^6.1.0", |
| 63 | + "magic-string": "^0.25.7" |
| 64 | + } |
| 65 | +} |
0 commit comments