-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.37 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
73
74
75
76
77
78
{
"packageManager": "[email protected]",
"name": "micromark-extension-definition-list",
"version": "2.0.0",
"description": "micromark extension to support definition lists",
"author": "Wataru Watanabe",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wataru-chocola/micromark-extension-definition-list.git"
},
"bugs": {
"url": "https://github.com/wataru-chocola/micromark-extension-definition-list/issues"
},
"homepage": "https://github.com/wataru-chocola/micromark-extension-definition-list",
"main": "./index.js",
"types": "./index.d.ts",
"type": "module",
"sideEffects": false,
"files": [
"dev/**/*.js",
"dev/**/*.d.ts",
"!dev/**/*.test.js",
"lib/**/*.js",
"lib/**/*.d.ts",
"!lib/**/*.test.js",
"index.d.ts",
"index.js"
],
"exports": {
"development": "./dev/index.js",
"default": "./index.js"
},
"dependencies": {
"assert": "^2.0.0",
"micromark-core-commonmark": "^2.0.0",
"micromark-factory-space": "^2.0.0",
"micromark-util-character": "^2.0.1",
"micromark-util-chunked": "^2.0.0",
"micromark-util-symbol": "^2.0.0",
"micromark-util-types": "^2.0.0",
"ts-dedent": "^2.2.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/assert": "1.5.11",
"@types/debug": "4.1.12",
"@types/node": "22.10.5",
"debug": "4.4.0",
"eslint": "9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "2.31.0",
"micromark": "4.0.1",
"micromark-build": "2.0.3",
"micromark-extension-gfm": "3.0.0",
"micromark-extension-gfm-table": "2.1.0",
"npm-check-updates": "17.1.13",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"typescript": "5.7.2",
"typescript-eslint": "^8.19.0",
"vitest": "2.1.8"
},
"keywords": [
"micromark",
"micromark-extension"
],
"scripts": {
"format": "prettier --write \"./dev/**/*.{js,ts,json}\"",
"lint": "eslint --no-warn-ignored ./dev/**/*.ts",
"lint-fix": "eslint --fix ./dev/**/*.{ts} && prettier --write ./dev/**/*.{ts}",
"test": "npm run build && vitest run --config ./vitest.not-dev.config.ts .js",
"test-dev": "tsc && NODE_OPTIONS=\"-C development\" vitest run dev/*.test.js",
"build": "npm run clean && tsc && micromark-build",
"prepack": "npm run build",
"clean": "rimraf lib/ index.js index.test.js dev/**/*.js"
}
}