forked from Trinovantes/bbcode-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.45 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.45 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
{
"name": "bbcode-compiler-react",
"version": "2.0.1",
"description": "Parses BBCode and generates React components with strong TypeScript support. Forked from Trinovantes/bbcode-compiler",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"dist/*",
"src/*"
],
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/BellCubeDev/bbcode-compiler-react"
},
"author": "BellCube",
"license": "MIT",
"private": false,
"scripts": {
"dev": " NODE_ENV=development tsc --watch",
"build": "NODE_ENV=production tsc -p tsconfig.prod.json",
"prepublishOnly": "rm -rf ./dist && yarn build",
"lint": "tsc --noemit && eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"test": "vitest",
"benchmark": " yarn build && node --loader ts-node/esm --experimental-specifier-resolution=node tests/benchmarks/benchmark.ts",
"profile": " yarn build && node --loader ts-node/esm --experimental-specifier-resolution=node --prof --no-logfile-per-isolate tests/benchmarks/profile.ts && node --prof-process v8.log > v8.txt"
},
"devDependencies": {
"@bbob/html": "^3.0.0",
"@bbob/preset-html5": "^3.0.0",
"@thoughtsunificator/bbcode-parser-template": "^1.0.9",
"@types/benchmark": "^2.1.1",
"@types/markdown-it": "^13.0.1",
"@types/node": "^20.7.0",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"bbcode": "^0.1.5",
"bbcode-compiler": "^0.1.5",
"bbcode-parser": "^1.0.10",
"bbcodejs": "^0.0.4",
"benchmark": "^2.1.4",
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-n": "^17.0.0-6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.9.0",
"markdown-it": "^14.0.0",
"react-dom": "^18.3.1",
"ts-bbcode-parser": "^1.0.4",
"ts-node": "^10.8.1",
"typescript": "^5.0.2",
"vitest": "^1.2.1",
"ya-bbcode": "^4.0.0"
},
"dependencies": {
"react": "^18.3.1"
}
}