-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.67 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.67 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
{
"name": "ya-bbcode",
"version": "5.0.0",
"description": "Yet another BBCode Parser",
"keywords": [
"bbc",
"bbcode",
"html",
"parser"
],
"homepage": "https://github.com/nodecraft/ya-bbcode",
"bugs": {
"url": "https://github.com/nodecraft/ya-bbcode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nodecraft/ya-bbcode"
},
"license": "MIT",
"author": "Nodecraft Inc.",
"type": "module",
"main": "./dist/ya-bbcode.cjs",
"module": "./dist/ya-bbcode.mjs",
"types": "./dist/ya-bbcode.d.mts",
"exports": {
".": {
"types": "./dist/ya-bbcode.d.mts",
"import": "./dist/ya-bbcode.mjs",
"require": "./dist/ya-bbcode.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"bench": "node benchmark/run.ts",
"build": "tsdown",
"check-types": "tsc --noEmit",
"coverage": "vitest run --coverage",
"lint": "eslint . --fix",
"prepublishOnly": "npm run build",
"test": "npm run check-types && vitest run && npm run test:imports",
"test:imports": "node test-imports/test-esm.mjs && node test-imports/test-cjs.cjs",
"test:unit": "vitest run"
},
"devDependencies": {
"@bbob/html": "4.3.1",
"@bbob/parser": "4.3.1",
"@bbob/preset-html5": "4.3.1",
"@nodecraft/eslint-config": "46.0.0",
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "8.48.0",
"@typescript-eslint/parser": "8.48.0",
"@vitest/coverage-v8": "4.0.14",
"eslint": "8.57.1",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "56.0.1",
"tinybench": "5.1.0",
"tsdown": "0.17.0-beta.4",
"typescript": "5.9.3",
"vitest": "4.0.14",
"xbbcode-parser": "0.3.1"
},
"engines": {
"node": ">=22",
"npm": ">=10"
}
}