-
-
Notifications
You must be signed in to change notification settings - Fork 262
/
package.json
104 lines (104 loc) · 2.71 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
{
"name": "carbon-components-svelte",
"version": "0.87.0",
"license": "Apache-2.0",
"description": "Svelte implementation of the Carbon Design System",
"type": "module",
"svelte": "./src/index.js",
"main": "./src/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"svelte": "./src/index.js"
},
"./css/*": "./css/*",
"./src/*.svelte": {
"types": "./types/*.svelte.d.ts",
"import": "./src/*.svelte"
},
"./src/*.js": {
"types": "./types/*.d.ts",
"import": "./src/*.js"
},
"./src/*": {
"types": "./types/*.d.ts",
"import": "./src/*.js"
}
},
"sideEffects": [
"css/*.css"
],
"scripts": {
"test": "vitest",
"test:ui": "vite",
"test:src-types": "tsc types/**/*.ts",
"test:types": "svelte-check --workspace tests",
"lint": "prettier --write --cache \"**/*.{svelte,md,js,json,ts}\"",
"build:css": "node scripts/build-css",
"build:docs": "node scripts/build-docs && node scripts/format-component-api",
"postinstall": "ibmtelemetry --config=telemetry.yml",
"release": "standard-version && npm run build:docs"
},
"dependencies": {
"@ibm/telemetry-js": "^1.5.0",
"flatpickr": "4.6.9"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.6",
"@testing-library/user-event": "^14.5.2",
"autoprefixer": "^10.4.8",
"carbon-components": "10.58.12",
"carbon-icons-svelte": "^12.1.0",
"carbon-preprocess-svelte": "^0.11.7",
"culls": "^0.1.1",
"jsdom": "^25.0.1",
"postcss": "^8.4.16",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.8",
"sass": "^1.49.11",
"standard-version": "^9.5.0",
"sveld": "^0.22.0",
"svelte": "^4.2.10",
"svelte-check": "^4.0.6",
"tinyglobby": "^0.2.10",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
},
"prettier": {
"plugins": [
"prettier-plugin-svelte"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/carbon-design-system/carbon-components-svelte.git"
},
"homepage": "https://github.com/carbon-design-system/carbon-components-svelte",
"bugs": "https://github.com/carbon-design-system/carbon-components-svelte/issues",
"keywords": [
"carbon",
"carbon components",
"svelte",
"component library",
"carbon design system"
],
"files": [
"src",
"types",
"css",
"telemetry.yml"
],
"maintainers": [
"Eric Liu (https://github.com/metonym)",
"Enrico Sacchetti (https://github.com/theetrain)"
]
}