-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.32 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.32 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
{
"name": "@gmod-workshop/steamdown",
"version": "1.1.1",
"description": "Convert Markdown to Steam BBCode",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"steamdown": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts src/cli.ts",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"keywords": [
"markdown",
"bbcode",
"steam",
"workshop",
"gmod"
],
"author": "dhkatz",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "^3.1.1",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"dependencies": {
"marked": "^15.0.7"
},
"optionalDependencies": {
"commander": "^13.1.0"
},
"tsup": {
"format": [
"esm",
"cjs"
],
"dts": true,
"clean": true,
"sourceMap": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmod-workshop/steamdown.git"
},
"bugs": {
"url": "https://github.com/gmod-workshop/steamdown/issues"
},
"homepage": "https://github.com/gmod-workshop/steamdown#readme"
}