flinker-markdown 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "flinker-markdown",
3
+ "description": "Free TypeScript library for parsing markdown text (customisable, not standardized).",
4
+ "version": "1.0.0",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/Dittner/FlinkerMD.git"
8
+ },
9
+ "keywords": [
10
+ "markdown, typescript"
11
+ ],
12
+ "author": "Alexander Dittner",
13
+ "license": "MIT",
14
+ "bugs": {
15
+ "url": "https://github.com/Dittner/FlinkerMD/issues"
16
+ },
17
+ "homepage": "https://github.com/Dittner/FlinkerMD",
18
+ "private": false,
19
+ "module": "./dist/esm/index.js",
20
+ "types": "./dist/types/index.d.ts",
21
+ "files": [
22
+ "dist/",
23
+ "index.ts",
24
+ "LICENSE.md",
25
+ "README.md"
26
+ ],
27
+ "scripts": {
28
+ "build": "rm -rf dist && npm run build:esm",
29
+ "build:esm": "tsc --module es2020 --target es2020 --outDir dist/esm"
30
+ },
31
+ "browserslist": {
32
+ "production": [
33
+ ">0.2%",
34
+ "not dead",
35
+ "not op_mini all"
36
+ ],
37
+ "development": [
38
+ "last 1 chrome version",
39
+ "last 1 firefox version",
40
+ "last 1 safari version"
41
+ ]
42
+ },
43
+ "devDependencies": {
44
+ "typescript": "~5.7.2"
45
+ },
46
+ "peerDependencies": {
47
+ }
48
+ }