-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.49 KB
/
Copy pathpackage.json
File metadata and controls
139 lines (139 loc) · 4.49 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
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@carbon/web-components",
"description": "Web components for the Carbon Design System",
"version": "2.63.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",
"bin": {
"create-prefixed-build": "./bin/create-prefixed-build.js"
},
"files": [
"bin/**/*",
"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 registration-coverage && yarn wca && yarn typecheck",
"clean": "rimraf es es-custom lib scss dist storybook-static storybook-static-v12 .storybook-v12/generated",
"postinstall": "ibmtelemetry --config=telemetry.yml",
"registration-coverage": "node tasks/registration-coverage.mjs",
"serve": "node tasks/build.js --serve",
"start": "yarn storybook",
"storybook": "storybook dev -p 6011",
"storybook:build": "storybook build",
"storybook:v12": "yarn storybook:v12:prepare && storybook dev -p 6012 --config-dir .storybook-v12",
"storybook:v12:build": "yarn storybook:v12:prepare && storybook build --config-dir .storybook-v12 --output-dir storybook-static-v12",
"storybook:v12:prepare": "node ../../tasks/prepare-v12-storybook.mjs .",
"test": "web-test-runner --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 && node tasks/wca-deprecation.mjs",
"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.88.0",
"@carbon/styles": "^1.115.0",
"@carbon/utilities": "^0.25.0",
"@floating-ui/dom": "^1.6.3",
"@ibm/telemetry-js": "^1.10.2",
"@lit-labs/signals": "^0.3.0",
"@lit/context": "^1.1.3",
"lit": "^3.1.0",
"lodash-es": "^4.17.21",
"tslib": "^2.6.3"
},
"devDependencies": {
"@carbon/layout": "^11.59.0",
"@carbon/motion": "^11.52.0",
"@juggle/resize-observer": "^3.4.0",
"@mordech/vite-lit-loader": "^0.40.0",
"@open-wc/testing": "^5.0.0",
"@playwright/test": "^1.36.2",
"@storybook/addon-docs": "^10.3.5",
"@storybook/addon-links": "^10.3.5",
"@storybook/web-components-vite": "^10.3.5",
"@types/lodash-es": "^4.17.5",
"@types/node": "^24.0.0",
"@web/test-runner": "^0.20.0",
"@web/test-runner-commands": "^1.0.0",
"@web/test-runner-playwright": "^1.0.0",
"@web/test-runner-puppeteer": "^1.0.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"autoprefixer": "^10.4.0",
"cssnano": "^9.0.0",
"flatpickr": "4.6.13",
"globby": "^16.0.0",
"remark-gfm": "^4.0.0",
"rimraf": "^6.0.1",
"sass": "^1.93.2",
"storybook": "^10.3.5",
"storybook-addon-accessibility-checker": "^9.2.0-rc.4",
"tsdown": "^0.23.0",
"typescript": "^6.0.3",
"typescript-config-carbon": "workspace:^0.11.0",
"vite": "^8.0.0",
"web-component-analyzer": "2.0.0"
},
"bundledDependencies": [
"flatpickr"
],
"typings": "es/index.d.ts",
"stylelint": {
"extends": [
"../../config/stylelint-config-carbon/index.js"
],
"overrides": [
{
"files": [
"src/components/**/*.scss"
],
"rules": {
"max-nesting-depth": null
}
}
]
}
}