UNPKG

magic-string-stack

Version:

magic-string with the capability of committing changes

68 lines 1.7 kB
{ "name": "magic-string-stack", "type": "module", "version": "1.1.0", "description": "magic-string with the capability of committing changes", "author": "Anthony Fu <anthonyfu117@hotmail.com>", "license": "MIT", "funding": "https://github.com/sponsors/antfu", "homepage": "https://github.com/antfu/magic-string-stack#readme", "repository": { "type": "git", "url": "git+https://github.com/antfu/magic-string-stack.git" }, "bugs": "https://github.com/antfu/magic-string-stack/issues", "keywords": [ "magic-string", "sourcemap" ], "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" } }, "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "files": [ "dist" ], "dependencies": { "@jridgewell/remapping": "^2.3.5", "magic-string": "^0.30.17" }, "devDependencies": { "@antfu/eslint-config": "^5.2.1", "@antfu/ni": "^25.0.0", "@antfu/utils": "^9.2.0", "@types/node": "^24.2.1", "bumpp": "^10.2.3", "eslint": "^9.33.0", "esno": "^4.8.0", "lint-staged": "^16.1.5", "pnpm": "^10.14.0", "rimraf": "^6.0.1", "simple-git-hooks": "^2.13.1", "typescript": "^5.9.2", "unbuild": "^3.6.0", "vite": "^7.1.2", "vitest": "^3.2.4" }, "simple-git-hooks": { "pre-commit": "pnpm lint-staged" }, "lint-staged": { "*": "eslint --fix" }, "scripts": { "build": "unbuild", "dev": "unbuild --stub", "lint": "eslint .", "release": "bumpp && pnpm publish", "start": "esno src/index.ts", "test": "vitest", "typecheck": "tsc --noEmit" } }