-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.4 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
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
85
86
87
88
89
{
"name": "@flowingcode/fc-applayout",
"version": "1.4.0",
"description": "Responsive and flexible LitElement based Application Layout",
"keywords": [
"web-components",
"lit-element",
"typescript",
"layout"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FlowingCode/fc-applayout.git"
},
"bugs": {
"url": "https://github.com/FlowingCode/fc-applayout/issues"
},
"homepage": "https://github.com/FlowingCode/fc-applayout#readme",
"main": "src/fc-applayout.ts",
"targets": {
"main": false
},
"type": "module",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"buildstatic": "tsc && parcel build dev/index.html --no-cache --no-scope-hoist",
"clean": "rimraf fc-applayout.{d.ts,d.ts.map,js,js.map} test/fc-applayout.{d.ts,d.ts.map,js,js.map} test/fc-applayout_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 \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --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/fc-applayout.bundled.js",
"docs:assets": "cp node_modules/prismjs/themes/prism-okaidia.css docs/",
"docs:serve": "wds --root-dir=docs --node-resolve --watch",
"analyze": "cem analyze --litelement --globs \"src/**/*.ts\"",
"analyze:watch": "cem analyze --litelement --globs \"src/**/*.ts\" --watch",
"serve": "wds --watch",
"serve:prod": "MODE=prod npm run serve",
"test": "npm run test:dev && npm run test:prod",
"test:dev": "wtr",
"test:watch": "wtr --watch",
"test:prod": "MODE=prod wtr",
"test:prod:watch": "MODE=prod wtr --watch",
"checksize": "rollup -c ; cat fc-applayout.bundled.js | gzip -9 | wc -c ; rm fc-applayout.bundled.js"
},
"author": "Flowing Code",
"license": "Apache-2.0",
"dependencies": {
"@flowingcode/fc-applayout": "^1.0.0",
"@polymer/app-layout": "^3.1.0",
"@polymer/font-roboto": "^3.0.2",
"@polymer/iron-icons": "^3.0.1",
"@polymer/paper-card": "^3.0.1",
"@polymer/paper-icon-button": "^3.0.2",
"@polymer/paper-listbox": "^3.0.1",
"@vaadin/vaadin-themable-mixin": "24.3.8",
"lit": "^3.1.2"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@custom-elements-manifest/analyzer": "^0.6.3",
"@open-wc/testing": "^3.1.5",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@vaadin/vertical-layout": "24.3.11",
"@web/dev-server": "^0.1.31",
"@web/dev-server-legacy": "^1.0.0",
"@web/test-runner": "^0.15.0",
"@web/test-runner-playwright": "^0.9.0",
"@webcomponents/webcomponentsjs": "^2.6.0",
"eslint": "^8.15.0",
"lit-analyzer": "^2.0.3",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.73.0",
"rollup-plugin-summary": "^1.4.3",
"rollup-plugin-terser": "^7.0.2",
"typescript": "5.3.3"
},
"customElements": "custom-elements.json"
}