-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.9 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "mdast-util-from-scrapbox",
"version": "0.0.0",
"private": true,
"description": "A utility to convert Scrapbox data into mdast.",
"keywords": [],
"repository": "https://github.com/junseinagao/mdast-util-from-scrapbox.git",
"license": "MIT",
"author": "junseinagao <[email protected]>",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"src",
"!src/**/*.test.ts",
"!src/**/__snapshots__",
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "run-s -c lint:*",
"lint:tsc": "tsc",
"lint:eslint": "eslint .",
"lint:prettier": "prettier -w .",
"test": "vitest"
},
"prettier": "@mizdra/prettier-config-mizdra",
"dependencies": {
"@progfay/scrapbox-parser": "^8.1.0",
"ts-pattern": "4.2.4-test.1",
"unist-builder": "^3.0.1"
},
"devDependencies": {
"@mizdra/eslint-config-mizdra": "^2.0.0",
"@mizdra/prettier-config-mizdra": "^1.0.0",
"@tsconfig/node18": "^1.0.1",
"@tsconfig/strictest": "^2.0.0",
"@types/eslint": "^8.37.0",
"@types/mdast": "^3.0.11",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-unicorn": "^46.0.0",
"mdast-util-from-markdown": "^1.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"typescript": "^5.0.4",
"unist-util-remove-position": "^4.0.2",
"vitest": "^0.30.1",
"vitest-github-actions-reporter": "^0.10.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"overrides": {
"tsconfig-paths": "^4.0.0"
}
}