-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 925 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 925 Bytes
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
{
"name": "ddb2alchemy",
"version": "0.2.0",
"description": "Convert D&D Beyond characters for use with the Alchemy VTT.",
"main": "src/index.ts",
"license": "MIT",
"private": true,
"dependencies": {
"turndown": "^7.1.1",
"turndown-plugin-gfm": "^1.0.2"
},
"scripts": {
"build": "esbuild src/site.ts --outfile=public/index.min.js --bundle --minify --sourcemap",
"start": "esbuild src/site.ts --outfile=public/index.min.js --bundle --sourcemap --servedir=public",
"lint": "tsc --noEmit && prettier --check .",
"format": "prettier --write .",
"test": "jest"
},
"devDependencies": {
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.2",
"@types/turndown": "^5.0.1",
"esbuild": "^0.15.16",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"prettier": "^3.0.1",
"typescript": "^4.9.3"
}
}