-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.64 KB
/
package.json
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
{
"name": "vellum-random-table",
"version": "1.1.1",
"description": "Web component for interactive random tables",
"author": "Ric Wood <ric@grislyeye.com>",
"repository": "https://github.com/grislyeye/vellum-random-table",
"license": "MIT",
"keywords": [
"typescript",
"lit",
"lit-element",
"rpg",
"ttrpg",
"web-component"
],
"module": "vellum-random-table.js",
"type": "module",
"scripts": {
"lint": "eslint src/ && npx prettier . --check",
"lint:format": "npx prettier . --write",
"clean": "rm -rf docs vellum-random-table.js vellum-random-table.js.map",
"build": "npm run clean && npm run build:prod && npm run build:analyze",
"build:prod": "esbuild src/vellum-random-table.ts --bundle --minify --sourcemap=external --outfile=vellum-random-table.js",
"build:dev": "esbuild src/vellum-random-table.ts --bundle --outfile=vellum-random-table.js",
"build:watch": "esbuild src/vellum-random-table.ts --bundle --watch --outfile=vellum-random-table.js --servedir=./",
"build:analyze": "cem analyze --litelement",
"build:docs": "npm run build:dev && mkdir docs && cp vellum-random-table.js index.html docs/",
"prepublishOnly": "npm run build"
},
"dependencies": {
"lit": "^3.2.1",
"tslib": "^2.8.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.3",
"@types/node": "^22.7.5",
"cheerio": "^1.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "3.3.3",
"ts-lit-plugin": "^2.0.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
}
}