-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
123 lines (123 loc) · 4.59 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "igniteui-webcomponents",
"version": "0.0.0",
"description": "Ignite UI Web Components",
"author": "Infragistics",
"license": "SEE LICENSE IN LICENSE",
"exports": {
".": "./src/index.js",
"./types": "./src/types.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/IgniteUI/igniteui-webcomponents"
},
"bugs": {
"url": "https://github.com/IgniteUI/igniteui-webcomponents/issues"
},
"scripts": {
"start": "npm run storybook",
"build:publish": "npm run cem && node scripts/build.mjs",
"cem": "cem analyze --config cem.config.mjs",
"cem:watch": "cem analyze --config cem.config.mjs --watch",
"build:styles": "node scripts/build-styles.mjs",
"build:meta": "node scripts/build-stories.mjs",
"watch-meta": "node scripts/stories-watcher.js ",
"watch-scss": "node scripts/styles-watcher.mjs",
"check": "madge --circular --warning --no-spinner --ts-config ./tsconfig.json --extensions ts src/index.ts",
"clean": "npm run clean:dist && npm run clean:styles && npm run clean:docs",
"clean:dist": "rimraf ./dist",
"clean:styles": "rimraf --glob \"src/**/*.css.ts\"",
"clean:docs": "rimraf ./docs",
"lint": "npm run lint:biome && npm run lint:lit-analyzer && npm run lint:prettier && npm run lint:styles",
"lint:biome": "biome lint",
"lint:lit-analyzer": "lit-analyzer",
"lint:prettier": "prettier \"**/*.ts\" --check --ignore-path .gitignore",
"lint:styles": "stylelint \"src/**/*.scss\"",
"format": "biome check --fix && prettier \"**/*.ts\" --write --ignore-path .gitignore",
"release": "node scripts/gen-changelog.mjs",
"test": "npm run build:styles && wtr --coverage",
"test:watch": "npm run build:styles && concurrently -k -r \"npm:watch-scss\" \"wtr --watch\"",
"storybook": "npm run build:styles && concurrently -k -r \"npm run cem:watch\" \"npm:watch-scss\" \"npm:watch-meta\" \"storybook dev -p 8000\"",
"storybook:build": "npm run build:styles && storybook build -o ./storybook-static",
"build:typedoc:export": "node scripts/build-typedoc.js export",
"build:typedoc:import": "node scripts/build-typedoc.js import",
"build:typedoc:watch": "node scripts/build-typedoc.js watch",
"build:typedoc:serve": "node scripts/build-typedoc.js serve && concurrently -k -r \"npm:build:typedoc:watch\"",
"build:typedoc:ja": "set NODE_ENV=production && node scripts/build-typedoc.js buildJA",
"build:typedoc:en": "set NODE_ENV=production && node scripts/build-typedoc.js buildEN",
"prepare": "husky"
},
"dependencies": {
"@floating-ui/dom": "^1.6.13",
"@lit-labs/virtualizer": "^2.0.15",
"@lit/context": "^1.1.3",
"lit": "^3.2.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@custom-elements-manifest/analyzer": "^0.10.4",
"@igniteui/material-icons-extended": "^3.1.0",
"@open-wc/testing": "^4.0.0",
"@storybook/addon-a11y": "^8.5.3",
"@storybook/addon-actions": "^8.5.3",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-links": "^8.5.3",
"@storybook/web-components": "^8.5.3",
"@storybook/web-components-vite": "^8.5.3",
"@types/mocha": "^10.0.10",
"@web/dev-server-esbuild": "^1.0.3",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"autoprefixer": "^10.4.20",
"browser-sync": "^3.0.3",
"cem-plugin-expanded-types": "^1.4.0",
"concurrently": "^9.1.2",
"custom-element-jet-brains-integration": "^1.7.0",
"custom-element-vs-code-integration": "^1.5.0",
"globby": "^14.0.2",
"husky": "^9.1.7",
"ig-typedoc-theme": "^6.0.0",
"igniteui-theming": "^14.3.1",
"keep-a-changelog": "^2.5.3",
"lint-staged": "^15.4.3",
"lit-analyzer": "^2.0.3",
"madge": "^8.0.0",
"node-watch": "^0.7.4",
"playwright": "^1.50.1",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"sass-embedded": "^1.78.0",
"sinon": "^19.0.2",
"storybook": "^8.5.3",
"stylelint": "^16.14.1",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-prettier": "^5.0.3",
"stylelint-scss": "^6.11.0",
"ts-lit-plugin": "^2.0.2",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typedoc-plugin-localization": "^3.0.6",
"typescript": "^5.7.3",
"vite": "^6.0.11"
},
"browserslist": [
"defaults"
],
"lint-staged": {
"*.{js,ts,cjs,mjs,jsx,tsx}": [
"biome check --fix --no-errors-on-unmatched",
"prettier --write"
]
},
"madge": {
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
},
"customElements": "custom-elements.json"
}