-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.87 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.87 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
{
"name": "lit-element-starter-ts",
"version": "0.0.0",
"description": "A simple web component",
"main": "x-6.js",
"module": "x-6.js",
"type": "module",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf x-6.{d.ts,d.ts.map,js,js.map} test/x-6.{d.ts,d.ts.map,js,js.map} test/x-6_test.{d.ts,d.ts.map,js,js.map}",
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint:lit-analyzer": "lit-analyzer",
"format": "prettier src/* --write",
"docs": "npm run docs:clean && npm run build && npm run analyze && npm run docs:build && npm run docs:assets && npm run docs:gen",
"docs:clean": "rimraf docs",
"docs:gen": "eleventy --config=.eleventy.cjs",
"docs:gen:watch": "eleventy --config=.eleventy.cjs --watch",
"docs:build": "rollup -c --file docs/lit-x6.bundled.js",
"docs:assets": "cp node_modules/prismjs/themes/prism-okaidia.css docs/",
"docs:serve": "es-dev-server --root-dir=docs --node-resolve --watch",
"analyze": "wca analyze \"src/**/*.ts\" --outFile custom-elements.json",
"serve": "es-dev-server --node-resolve --watch",
"test": "karma start karma.conf.cjs",
"test:watch": "karma start karma.conf.cjs --auto-watch=true --single-run=false",
"test:update-snapshots": "karma start karma.conf.cjs --update-snapshots",
"test:prune-snapshots": "karma start karma.conf.cjs --prune-snapshots",
"checksize": "rollup -c ; cat lit-x6.bundled.js | gzip -9 | wc -c ; rm lit-x6.bundled.js"
},
"keywords": [
"web-components",
"lit",
"typescript"
],
"author": "The Polymer Authors",
"license": "BSD-3-Clause",
"dependencies": {
"@antv/x6": "^2.18.1",
"@antv/x6-plugin-export": "^2.1.6",
"@antv/x6-plugin-minimap": "^2.0.7",
"@antv/x6-plugin-scroller": "^2.0.10",
"@antv/x6-plugin-selection": "^2.2.2",
"@antv/x6-plugin-snapline": "^2.1.7",
"@antv/x6-plugin-transform": "^2.1.8",
"lit": "3.2.1"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@open-wc/testing": "^4.0.0",
"@open-wc/testing-karma": "^3.3.11",
"@rollup/plugin-replace": "^2.3.1",
"@types/chai": "^4.2.11",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"chai": "^4.2.0",
"deepmerge": "^4.2.2",
"es-dev-server": "^1.46.1",
"eslint": "^9.34.0",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-mocha": "^2.0.1",
"lit-analyzer": "^2.0.3",
"mocha": "^7.1.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-filesize": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"typescript": "^5.5.4",
"web-component-analyzer": "^1.0.3"
}
}