-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
100 lines (100 loc) · 3.46 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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "apex-grid",
"version": "0.0.0",
"description": "Web component data grid following open-wc recommendations",
"keywords": [
"lit",
"web-component",
"lit-element"
],
"license": "SEE LICENSE IN LICENSE.mds",
"author": "apex-grid",
"exports": {
".": "./dist/src/index.js",
"./define": "./dist/src/define.js"
},
"type": "module",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"files": [
"/dist/",
"/dist/bundle.*",
"!/dist/test/",
"LICENSE",
"README.md",
"custom-elements.json"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"analyze": "cem analyze --litelement --globs \"src/**/*.{js,ts}\" --exclude \"src/styles/**/*\"",
"build": "npm run build:tsc && npm run dev:vite && npm run typedoc",
"build:tsc": "tsc",
"dev:vite": "vite build",
"format": "npm run format:eslint && npm run format:prettier && npm run format:stylelint",
"format:eslint": "eslint \"**/*.{js,ts,html}\" --fix --ignore-path .eslintignore",
"format:prettier": "prettier \"**/*.{js,ts,json,html,md}\" --write --ignore-path .eslintignore",
"format:stylelint": "stylelint \"**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .eslintignore",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
"lint:eslint": "eslint \"**/*.{js,ts,html}\" --ignore-path .eslintignore",
"lint:prettier": "prettier \"**/*.{js,ts,json,html,md}\" --check --ignore-path .eslintignore",
"lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .eslintignore",
"preview:vite": "vite preview",
"sass:watch": "sass-style-template -j ts",
"start": "concurrently -k -r \"npm:sass:watch\" \"npm:vite\"",
"start:wds": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"npm:sass:watch\" \"npm:wds\"",
"test": "tsc && wtr --coverage",
"test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"",
"typedoc": "typedoc",
"vite": "vite",
"wds": "web-dev-server",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,ts,html}": [
"npm run format:eslint"
],
"**/*.{js,ts,json,html,md}": [
"npm run format:prettier"
],
"**/*.{scss,css}": [
"npm run format:stylelint"
]
},
"dependencies": {
"@lit-labs/context": "^0.3.1",
"@lit-labs/virtualizer": "^2.0.2",
"igniteui-theming": "^1.4.2",
"igniteui-webcomponents": "^4.2.3",
"lit": "^2.7.4"
},
"devDependencies": {
"@blockquote/rollup-plugin-total-bundlesize": "^2.0.1",
"@blockquote/sass-style-template": "3.0.0",
"@blockquote/test-runner-mocha-style-reporter": "^1.5.1",
"@custom-elements-manifest/analyzer": "^0.8.1",
"@open-wc/eslint-config": "^10.0.0",
"@open-wc/testing": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@web/dev-server": "^0.2.1",
"@web/test-runner": "^0.16.1",
"@web/test-runner-playwright": "^0.10.0",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-log-filenames": "^1.0.6",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"sinon": "^15.0.4",
"stylelint": "^15.6.0",
"stylelint-config-standard-scss": "^9.0.0",
"tslib": "^2.5.0",
"typedoc": "^0.24.6",
"typescript": "^5.0.4",
"vite": "^4.3.4"
},
"customElements": "custom-elements.json"
}