-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 KB
/
package.json
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
55
56
57
58
59
{
"name": "hypermdx",
"version": "2.0.10",
"description": "Markdown extended with Hyperapp",
"type": "module",
"types": "dist/index.d.ts",
"exports": "./dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=12.4"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"c8": "^7.13.0",
"eslint": "^8.35.0",
"hyperapp": "^2.0.22",
"tsm": "^2.3.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/talentlessguy/hypermdx.git"
},
"keywords": [
"markdown",
"hyperapp",
"mdx",
"remark"
],
"author": "v1rtl <pilll.PL22@gmail.com>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/talentlessguy/hypermdx/issues"
},
"homepage": "/~https://github.com/talentlessguy/hypermdx#readme",
"dependencies": {
"hast-to-hyperscript": "^10.0.3",
"mdast-util-to-hast": "^12.3.0",
"remark-parse": "^10.0.1",
"unified": "^10.1.2"
},
"peerDependencies": {
"hyperapp": ">=2"
},
"scripts": {
"build": "tsup src/index.ts --format=esm --dts",
"dev": "tsup src/index.ts --watch --format=esm --dts",
"lint": "pnpm eslint \"./**/*.ts\"",
"format": "dprint fmt",
"test": "node --loader tsm tests/index.ts",
"test:coverage": "c8 node --experimental-test-coverage --loader tsm tests/index.ts",
"test:report": "c8 report --reporter=text-lcov > coverage.lcov"
}
}