-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.7 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.7 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
80
81
82
83
84
{
"name": "bbcode-compiler",
"type": "module",
"version": "0.1.12",
"description": "Parses BBCode and generates HTML ",
"license": "MIT",
"private": false,
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": [
"README.md",
"dist/*",
"src/*"
],
"homepage": "https://trinovantes.github.io/bbcode-compiler/",
"repository": {
"type": "git",
"url": "https://github.com/Trinovantes/bbcode-compiler"
},
"author": {
"name": "Stephen",
"email": "hello@stephenli.ca",
"url": "https://www.stephenli.ca"
},
"scripts": {
"demoDev": " vite --config vite.config.demo.ts",
"demoBuild": " vite build --config vite.config.demo.ts",
"demoPreview": "vite preview --config vite.config.demo.ts",
"clean": "rm -rf ./dist ./demo/dist",
"build": "vite build",
"prepublishOnly": "pnpm clean && pnpm build",
"lint": "vue-tsc && eslint",
"test": "vitest",
"benchmark": "bun ./tests/benchmarks/benchmark.ts",
"prof": "node --prof --no-logfile-per-isolate tests/benchmarks/profile.ts && node --prof-process v8.log > v8.txt"
},
"devDependencies": {
"@bbob/html": "^4.3.1",
"@bbob/preset-html5": "^4.3.1",
"@eslint/compat": "^2.0.3",
"@eslint/js": "^10.0.1",
"@quasar/extras": "^1.17.0",
"@quasar/vite-plugin": "^1.11.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@thoughtsunificator/bbcode-parser-template": "^1.0.9",
"@types/benchmark": "^2.1.5",
"@types/lodash.debounce": "^4.0.9",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.12.0",
"@vitejs/plugin-vue": "^6.0.5",
"bbcode": "^0.1.5",
"bbcode-parser": "^1.0.10",
"bbcodejs": "^0.0.4",
"benchmark": "^2.1.4",
"eslint": "^10.1.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"lodash.debounce": "^4.0.8",
"lz-string": "^1.5.0",
"markdown-it": "^14.1.1",
"mitt": "^3.0.1",
"monaco-editor": "^0.55.1",
"quasar": "^2.19.1",
"sass": "^1.98.0",
"shiki": "^4.0.2",
"ts-bbcode-parser": "^1.0.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2",
"vite": "^8.0.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.1",
"vue": "^3.5.30",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.6",
"ya-bbcode": "^5.0.0"
}
}