forked from carbon-design-system/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 4.3 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
{
"name": "@carbon/web-components",
"description": "Web components for the Carbon Design System",
"version": "2.19.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/**/*",
"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/",
"./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": "gulp test && yarn test:integration",
"//test:integration": "yarn test:integration:build && yarn test:integration:ui",
"//test:integration:build": "jest -c tests/integration/build/jest.config.js --runInBand",
"//test:integration:ui": "jest -c tests/integration/ui/jest.config.js --runInBand",
"//test:unit": "gulp test:unit",
"//test:unit:updateSnapshot": "gulp test:unit --update-snapshot",
"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.71.0",
"@floating-ui/dom": "^1.6.3",
"@ibm/telemetry-js": "^1.5.0",
"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.53.0",
"@carbon/layout": "^11.28.0",
"@carbon/motion": "^11.24.0",
"@juggle/resize-observer": "^3.4.0",
"@mordech/vite-lit-loader": "^0.37.0",
"@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.2.8",
"@storybook/addon-links": "^8.2.8",
"@storybook/addon-storysource": "^8.2.8",
"@storybook/blocks": "^8.2.8",
"@storybook/web-components": "^8.2.8",
"@storybook/web-components-vite": "^8.2.8",
"@types/bluebird": "^3.5.36",
"@types/jasmine": "^5.0.0",
"@types/jest": "^29.2.3",
"@types/lodash-es": "^4.17.5",
"@types/node": "^18.11.9",
"@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.2.8",
"storybook-addon-accessibility-checker": "^3.1.61-rc.3",
"temp": "^0.9.0",
"typescript-config-carbon": "^0.2.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
}
}
]
}
}