🔧 npm update

This commit is contained in:
2025-04-15 20:50:11 +02:00
parent ce5b9ac0c8
commit 94a90edabd
828 changed files with 256807 additions and 197099 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "magic-string",
"version": "0.30.5",
"version": "0.30.17",
"description": "Modify strings, generate sourcemaps",
"keywords": [
"string",
@@ -14,6 +14,7 @@
"author": "Rich Harris",
"main": "./dist/magic-string.cjs.js",
"module": "./dist/magic-string.es.mjs",
"sideEffects": false,
"jsnext:main": "./dist/magic-string.es.mjs",
"types": "./dist/magic-string.cjs.d.ts",
"exports": {
@@ -28,37 +29,35 @@
"index.d.ts",
"README.md"
],
"scripts": {
"build": "rollup -c && cp ./src/index.d.ts ./dist/magic-string.es.d.mts && cp ./src/index.d.ts ./dist/magic-string.cjs.d.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"format": "prettier --single-quote --print-width 100 --use-tabs --write src/*.js src/**/*.js",
"lint": "eslint src test && publint",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && rm -rf dist && npm test",
"release": "bumpp -x \"npm run changelog\" --all --commit --tag --push && npm publish",
"pretest": "npm run build",
"test": "mocha",
"bench": "npm run build && node benchmark/index.mjs",
"watch": "rollup -cw"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-replace": "^5.0.2",
"@eslint/js": "^9.16.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^5.0.7",
"benchmark": "^2.1.4",
"bumpp": "^9.2.0",
"bumpp": "^9.9.1",
"conventional-changelog-cli": "^3.0.0",
"eslint": "^8.47.0",
"mocha": "^10.2.0",
"prettier": "^3.0.2",
"publint": "^0.2.1",
"rollup": "^3.28.0",
"source-map-js": "^1.0.2",
"source-map-support": "^0.5.21"
},
"engines": {
"node": ">=12"
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"publint": "^0.2.12",
"rollup": "^3.29.5",
"source-map-js": "^1.2.1",
"source-map-support": "^0.5.21",
"vitest": "^2.1.8"
},
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.4.15"
"@jridgewell/sourcemap-codec": "^1.5.0"
},
"scripts": {
"build": "rollup -c",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"format": "prettier --single-quote --print-width 100 --use-tabs --write .",
"lint": "eslint src test && publint",
"lint:fix": "eslint src test --fix",
"release": "bumpp -x \"npm run changelog\" --all --commit --tag --push && npm publish",
"pretest": "npm run build",
"test": "vitest run",
"test:dev": "vitest",
"bench": "npm run build && node benchmark/index.mjs",
"watch": "rollup -cw"
}
}
}