-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.85 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.85 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
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
124
125
126
{
"name": "@carbon/web-components",
"description": "Web components for the Carbon Design System",
"version": "2.53.0-rc.0",
"license": "Apache-2.0",
"main": "es/index.js",
"module": "es/index.js",
"repository": {
"type": "git",
"url": "https://github.com/carbon-design-system/carbon.git",
"directory": "packages/web-components"
},
"bugs": "https://github.com/carbon-design-system/carbon/issues",
"files": [
"custom-elements.json",
"es/**/*",
"es-custom/**/*",
"lib/**/*",
"scss/**/*",
"telemetry.yml"
],
"keywords": [
"ibm",
"carbon",
"carbon-design-system",
"components",
"web components"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"exports": {
"./es/components/*": {
"default": "./es/components/*"
},
"./es/globals/*": {
"default": "./es/globals/*"
},
"./es": "./es/index.js",
"./es/": "./es/",
"./es-custom/*": "./es-custom/*",
"./lib/": "./lib/",
"./scss/": "./scss/",
"./custom-elements.json": "./custom-elements.json",
"./package.json": "./package.json"
},
"scripts": {
"prebuild": "node tools/fix-carbon-sass-imports.js",
"build": "yarn clean && node tasks/build.js && yarn wca",
"build:dist": "node tasks/build-dist.js",
"build:cdn": "yarn clean && yarn build:dist",
"ci-check": "yarn wca && yarn typecheck",
"clean": "rimraf es es-custom lib scss dist storybook-static",
"postinstall": "ibmtelemetry --config=telemetry.yml",
"serve": "node tasks/build.js --serve",
"start": "yarn storybook",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"test": "web-test-runner \"src/components/**/__tests__/**/*.js\" --node-resolve --concurrency=1",
"test:updateSnapshots": "yarn test --update-snapshots",
"typecheck": "tsc --noEmit -p tsconfig.json",
"wca": "web-component-analyzer analyze src --outFile custom-elements.json",
"telemetry:config": "npx -y @ibm/telemetry-js-config-generator generate --wc --id 8cf8b3b8-a121-47d3-9eec-e4bea0ff23f5 --endpoint https://www-api.ibm.com/ibm-telemetry/v1/metrics --files ./src/components"
},
"dependencies": {
"@carbon/icon-helpers": "10.47.0",
"@carbon/icons": "^11.79.0-rc.0",
"@carbon/styles": "^1.105.0-rc.0",
"@carbon/utilities": "^0.17.0",
"@floating-ui/dom": "^1.6.3",
"@ibm/telemetry-js": "^1.10.2",
"@lit/context": "^1.1.3",
"flatpickr": "4.6.13",
"lit": "^3.1.0",
"lodash-es": "^4.17.21",
"tslib": "^2.6.3"
},
"devDependencies": {
"@carbon/layout": "^11.52.0-rc.0",
"@carbon/motion": "^11.45.0-rc.0",
"@juggle/resize-observer": "^3.4.0",
"@mordech/vite-lit-loader": "^0.40.0",
"@open-wc/testing": "^4.0.0",
"@playwright/test": "^1.36.2",
"@storybook/addon-docs": "^9.1.8",
"@storybook/addon-links": "^9.1.8",
"@storybook/web-components-vite": "^9.1.8",
"@types/lodash-es": "^4.17.5",
"@types/node": "^24.0.0",
"@web/test-runner": "^0.20.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"@web/test-runner-puppeteer": "^0.18.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"autoprefixer": "^10.4.0",
"cssnano": "^7.1.0",
"globby": "^15.0.0",
"remark-gfm": "^4.0.0",
"rimraf": "^6.0.1",
"sass": "^1.93.2",
"storybook": "^9.1.8",
"storybook-addon-accessibility-checker": "^9.2.0-rc.3",
"tsdown": "^0.21.0",
"typescript-config-carbon": "workspace:^0.9.0",
"vite": "^7.2.4",
"web-component-analyzer": "2.0.0"
},
"typings": "es/index.d.ts",
"stylelint": {
"extends": [
"../../config/stylelint-config-carbon"
],
"overrides": [
{
"files": [
"src/components/**/*.scss"
],
"rules": {
"max-nesting-depth": null
}
}
]
}
}