Files
remark42/frontend/packages/api/package.json
T
Dmitry VerkhoturovandUmputun 3001b37812 Update pnpm from v7 to v8
That suppose to help with Dependabot security updates not updating lockfile.
2024-11-10 13:31:03 -06:00

59 lines
1.6 KiB
JSON

{
"name": "@remark42/api",
"version": "0.6.0-alpha.11",
"description": "Implementation of API methods for Remark42",
"repository": {
"type": "git",
"url": "git+https://github.com/umputun/remark42.git#master"
},
"bugs": {
"url": "https://github.com/umputun/remark42/issues"
},
"homepage": "https://github.com/umputun/remark42/tree/master/frontend/packages/api#readme",
"keywords": [
"remark42",
"comments"
],
"author": "Paul Mineev",
"license": "MIT",
"scripts": {
"dev": "tsc -w --incremental",
"build:cjs": "tsc --module CommonJS",
"build:esm": "tsc --module ESNext",
"build": "npm-run-all cleanup --parallel build:*",
"postpublish": "pnpm run cleanup",
"cleanup": "rm -rf *.js *.d.ts **/*.js **/*.d.ts *.tsbuildinfo",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint --ext .cjs,.mjs,.ts --max-warnings=0",
"type-check": "tsc --noEmit",
"lint-staged:lint": "eslint --fix --ext .cjs,.mjs,.ts"
},
"packageManager": "pnpm@8.15.9",
"devDependencies": {
"@types/node": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@vitest/coverage-c8": "^0.22.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jsdom": "^20.0.0",
"msw": "^0.44.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vitest": "^0.22.1",
"whatwg-fetch": "^3.6.2"
},
"type": "module",
"files": [
"./*.js",
"./*.d.ts",
"./clients/*.d.ts",
"./lib/*.d.ts"
]
}