Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
121 changes: 63 additions & 58 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,58 +1,63 @@
{
"url": "https://tiddly-gittly.github.io/Modern.TiddlyDev/",
"license": "MIT",
"version": "0.0.2",
"scripts": {
"dev": "tiddlywiki-plugin-dev dev",
"dev:lan": "tiddlywiki-plugin-dev dev --lan",
"dev:wiki": "tiddlywiki-plugin-dev dev --write-wiki",
"test": "tiddlywiki-plugin-dev test",
"build": "npm run clean && tiddlywiki-plugin-dev build",
"lint": "eslint ./src --ext js,ts,tsx,json",
"lint:fix": "eslint ./src --ext ts,tsx,json --fix",
"check": "tsc --noEmit --skipLibCheck",
"publish": "npm run clean && tiddlywiki-plugin-dev publish",
"reset": "rimraf ./**/node_modules",
"clean": "rimraf dist",
"prepare": "husky install",
"update": "npm-check-updates -u && dprint config update",
"new": "tiddlywiki-plugin-dev new",
"build:library": "npm run clean && tiddlywiki-plugin-dev build --library --output dist/library",
"publish:offline": "npm run clean && tiddlywiki-plugin-dev publish --offline"
},
"engines": {
"node": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"devDependencies": {
"@modern-js/tsconfig": "^2.68.19",
"@types/jasmine": "^5.1.12",
"@types/node": "^24.10.0",
"dprint": "^0.50.2",
"eslint-config-tidgi": "^2.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"postcss": "^8.5.6",
"rimraf": "^6.1.0",
"ts-node": "^10.9.2",
"tw5-typed": "^0.6.8",
"typescript": "^5.9.3"
},
"dependencies": {
"npm-check-updates": "^19.1.2",
"tiddlywiki": "^5.3.8",
"tiddlywiki-plugin-dev": "^0.3.2"
}
}
{
"url": "https://tiddly-gittly.github.io/Modern.TiddlyDev/",
"license": "MIT",
"version": "0.0.2",
"scripts": {
"dev": "tiddlywiki-plugin-dev dev",
"dev:lan": "tiddlywiki-plugin-dev dev --lan",
"dev:wiki": "tiddlywiki-plugin-dev dev --write-wiki",
"test": "tiddlywiki-plugin-dev test",
"build": "npm run clean && tiddlywiki-plugin-dev build",
"lint": "eslint ./src --ext js,ts,tsx,json",
"lint:fix": "eslint ./src --ext ts,tsx,json --fix",
"check": "tsc --noEmit --skipLibCheck",
"publish": "npm run clean && tiddlywiki-plugin-dev publish",
"reset": "rimraf ./**/node_modules",
"clean": "rimraf dist",
"prepare": "husky install",
"update": "npm-check-updates -u && dprint config update",
"new": "tiddlywiki-plugin-dev new",
"build:library": "npm run clean && tiddlywiki-plugin-dev build --library --output dist/library",
"publish:offline": "npm run clean && tiddlywiki-plugin-dev publish --offline"
},
"engines": {
"node": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"devDependencies": {
"@modern-js/tsconfig": "^3.1.3",
"@types/jasmine": "^6.0.0",
"@types/node": "^25.6.0",
"dprint": "^0.54.0",
"eslint-config-tidgi": "^2.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.5.9",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"tw5-typed": "^1.1.5",
"typescript": "^6.0.2"
},
"dependencies": {
"npm-check-updates": "^20.0.1",
"tiddlywiki": "^5.3.8",
"tiddlywiki-plugin-dev": "^0.4.4"
},
"pnpm": {
"overrides": {
"esbuild-plugin-browserslist": "1.0.2"
}
}
Comment on lines +39 to +62

Copilot AI Apr 11, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dependency versions were bumped in package.json, but pnpm-lock.yaml is present in the repo and isn’t updated in this PR. That can lead to non-reproducible installs and CI using older resolved versions. Please regenerate and commit pnpm-lock.yaml (and keep it in sync with these version changes).

Copilot uses AI. Check for mistakes.
}
Loading
Loading