-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "mfm-js",
"version": "0.26.0",
"description": "An MFM parser implementation with TypeScript",
"type": "module",
"packageManager": "pnpm@10.33.4",
"main": "./built/index.mjs",
"types": "./built/index.d.ts",
"exports": {
".": {
"import": "./built/index.mjs",
"require": "./built/index.cjs",
"types": "./built/index.d.ts"
}
},
"scripts": {
"build": "tsdown",
"tsc": "tsc --noEmit",
"tsd": "tsd",
"parse": "node ./built/cli/parse",
"parse-simple": "node ./built/cli/parseSimple",
"api": "pnpm exec api-extractor run --local --verbose",
"api-prod": "pnpm exec api-extractor run --verbose",
"lint": "eslint",
"vitest": "vitest run --coverage",
"test": "pnpm run vitest && pnpm run tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misskey-dev/mfm.js.git"
},
"author": "Marihachi",
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "7.58.7",
"@misskey-dev/eslint-plugin": "^2.1.0",
"@types/node": "22.19.17",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"@vitest/coverage-v8": "4.1.5",
"eslint": "9.39.4",
"tsd": "0.33.0",
"tsdown": "^0.21.10",
"typescript": "5.9.3",
"vitest": "4.1.5"
},
"dependencies": {
"@misskey-dev/emoji-data": "17.0.0"
},
"files": [
"built",
"CHANGELOG.md"
]
}