-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.22 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@traptitech/traq-markdown-it",
"version": "7.1.0",
"description": "Markdown parser for traQ.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./index.css": "./dist/index.css",
"./src/*": "./src/*"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=20"
},
"scripts": {
"start": "tsup src/index.ts --watch src",
"build": "tsup src/index.ts && npm run build:css",
"build:css": "sass ./src/css/index.scss ./dist/index.css",
"test": "jest",
"test:update": "jest --updateSnapshot",
"lint": "eslint --cache .",
"format": "prettier --cache --write .",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/traPtitech/traq-markdown-it.git"
},
"author": "traP (https://github.com/traPtitech)",
"license": "MIT",
"bugs": {
"url": "https://github.com/traPtitech/traq-markdown-it/issues"
},
"homepage": "https://github.com/traPtitech/traq-markdown-it#readme",
"dependencies": {
"@traptitech/markdown-it-katex": "^3.6.0",
"@traptitech/markdown-it-spoiler": "^1.1.6",
"highlight.js": "^11.11.1",
"katex": "^0.16.28",
"markdown-it": "^14.1.0",
"markdown-it-container": "^4.0.0",
"markdown-it-image-filter": "^1.1.0",
"markdown-it-json": "^1.0.2",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-mark": "^4.0.0"
},
"devDependencies": {
"@traptitech/traq": "^3.27.1-0",
"@types/jest": "^30.0.0",
"@types/katex": "^0.16.8",
"@types/markdown-it": "14.1.2",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@typescript/lib-dom": "npm:@types/web@^0.0.330",
"es-jest": "^2.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.13.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"ts-dedent": "^2.2.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"sideEffects": false
}