You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
{ |
|
"name": "gc-parser", |
|
"version": "1.0.0", |
|
"description": "Super-parser for Nostr event content supporting AsciiDoc, Markdown, code syntax highlighting, LaTeX, musical notation, and nostr: addresses", |
|
"main": "dist/index.js", |
|
"types": "dist/index.d.ts", |
|
"scripts": { |
|
"build": "tsc", |
|
"test": "jest", |
|
"test:asciidoc": "ts-node src/__tests__/asciidoc.test.ts", |
|
"test:all": "npm run test && npm run test:asciidoc", |
|
"test:report": "ts-node generate-test-report.ts", |
|
"prepublishOnly": "npm run build" |
|
}, |
|
"keywords": [ |
|
"nostr", |
|
"parser", |
|
"asciidoc", |
|
"markdown", |
|
"syntax-highlighting", |
|
"latex", |
|
"music" |
|
], |
|
"author": "", |
|
"license": "MIT", |
|
"dependencies": { |
|
"@asciidoctor/core": "^3.0.4", |
|
"@types/marked": "^5.0.2", |
|
"marked": "^17.0.3", |
|
"node-emoji": "^2.2.0" |
|
}, |
|
"devDependencies": { |
|
"@types/highlight.js": "^10.1.0", |
|
"@types/jest": "^29.5.11", |
|
"@types/node": "^20.19.35", |
|
"jest": "^29.7.0", |
|
"ts-jest": "^29.4.6", |
|
"ts-node": "^10.9.2", |
|
"typescript": "^5.3.3" |
|
} |
|
}
|
|
|