Files
pnpm/text/comments-parser/package.json
2024-06-27 22:06:05 +02:00

42 lines
1.0 KiB
JSON

{
"name": "@pnpm/text.comments-parser",
"description": "Extracts and inserts comments from/to text",
"version": "3.0.0",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"keywords": [
"pnpm9"
],
"license": "MIT",
"engines": {
"node": ">=18.12"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/text/comments-parser",
"scripts": {
"start": "tsc --watch",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"dependencies": {
"strip-comments-strings": "catalog:"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/text/comments-parser#readme",
"funding": "https://opencollective.com/pnpm",
"devDependencies": {
"@pnpm/text.comments-parser": "workspace:*"
},
"exports": {
".": "./lib/index.js"
}
}