-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathpackage.json
142 lines (142 loc) · 4.22 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@carbon/web-components",
"description": "Web components for the Carbon Design System",
"version": "2.26.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",
"dist/**/*",
"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/",
"./dist/": "./dist/",
"./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-dist.js && node tasks/build.js && yarn wca",
"ci-check": "yarn wca && yarn typecheck",
"clean": "rimraf es 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",
"test:updateSnapshots": "yarn test --update-snapshots",
"typecheck": "tsc --noEmit -p tsconfig.json",
"visual-snapshot": "yarn percy storybook:start ./storybook-static",
"wca": "web-component-analyzer analyze src --outFile custom-elements.json"
},
"dependencies": {
"@carbon/styles": "^1.78.0-rc.0",
"@floating-ui/dom": "^1.6.3",
"@ibm/telemetry-js": "^1.5.0",
"@lit/context": "^1.1.1",
"flatpickr": "4.6.13",
"lit": "^3.1.0",
"lodash-es": "^4.17.21",
"tslib": "^2.6.3"
},
"devDependencies": {
"@carbon/icon-helpers": "10.47.0",
"@carbon/icons": "^11.57.0",
"@carbon/layout": "^11.31.0-rc.0",
"@carbon/motion": "^11.25.0",
"@juggle/resize-observer": "^3.4.0",
"@mordech/vite-lit-loader": "^0.37.0",
"@open-wc/testing": "^4.0.0",
"@playwright/test": "^1.36.2",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^6.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/pluginutils": "^5.0.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-storysource": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/web-components": "^8.4.7",
"@storybook/web-components-vite": "^8.4.7",
"@types/lodash-es": "^4.17.5",
"@types/node": "^18.11.9",
"@web/test-runner": "^0.19.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"autoprefixer": "^10.4.0",
"babel-loader": "^9.0.0",
"cssnano": "^7.0.0",
"globby": "^14.0.2",
"is-port-reachable": "^3.1.0",
"null-loader": "^4.0.0",
"prop-types": "^15.7.2",
"read-package-up": "^11.0.0",
"remark-gfm": "^4.0.0",
"rimraf": "^6.0.0",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-multi-input": "^1.3.1",
"sass": "^1.51.0",
"storybook": "^8.4.7",
"storybook-addon-accessibility-checker": "^3.1.61-rc.3",
"temp": "^0.9.0",
"typescript-config-carbon": "^0.5.0",
"vite": "^5.0.7",
"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
}
}
]
}
}