-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.95 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
48
49
50
51
52
53
{
"name": "vellum-doc",
"version": "0.10.1",
"description": "A simple custom element for web publishing",
"main": "vellum-doc.js",
"module": "vellum-doc.js",
"type": "module",
"scripts": {
"lint": "eslint src/ && npx prettier . --check && npx stylelint src/**/*.css && lit-analyzer src",
"lint:fix": "npx prettier . --write",
"clean": "rm -rf docs vellum-doc.js vellum-doc.js.map",
"build": "npm run clean && npm run build:prod",
"start": "npm run build:watch",
"build:prod": "npm run build:analyze && tsc && esbuild src/vellum-doc.ts --bundle --minify --sourcemap=external --outfile=vellum-doc.js --loader:.svg=text --loader:.css=text",
"build:dev": "tsc && esbuild src/vellum-doc.ts --bundle --outfile=vellum-doc.js --loader:.svg=text --loader:.css=text",
"build:watch": "tsc && esbuild src/vellum-doc.ts --bundle --watch --outfile=vellum-doc.js --servedir=./ --loader:.svg=text --loader:.css=text",
"build:analyze": "lit-analyzer src && cem analyze --litelement",
"build:docs": "npm run build:dev && mkdir docs && cp vellum-doc.js index.html docs/",
"prepublishOnly": "npm run build"
},
"keywords": [
"web-components",
"lit-element",
"typescript",
"lit",
"publishing",
"vellum"
],
"author": "Ric Wood <ric@grislyeye.com>",
"license": "BSD-3-Clause",
"dependencies": {
"@sindresorhus/slugify": "^2.2.1",
"lit": "^3.2.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.3",
"@eslint/js": "^9.12.0",
"@lion/ui": "^0.8.0",
"@types/eslint__js": "^8.42.3",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lit-analyzer": "^2.0.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "~5.6.3",
"typescript-eslint": "^8.9.0"
},
"customElements": "custom-elements.json"
}