-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "carbon-preprocess-svelte",
"version": "0.11.10",
"license": "Apache-2.0",
"description": "Svelte preprocessors for the Carbon Design System",
"author": "Eric Liu (https://github.com/metonym)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"index:components": "bun scripts/index-components.ts",
"build": "bun --bun tsc -p tsconfig.build.json",
"build:prune-package": "bunx culls",
"test": "bun test",
"test:e2e": "bun tests/test-e2e.ts",
"format": "bun --bun prettier --write . --cache",
"upgrade-examples": "bun scripts/upgrade-examples.ts"
},
"dependencies": {
"estree-walker": "^2.0.2",
"magic-string": "^0.30.17",
"postcss": "^8.5.1",
"postcss-discard-empty": "^7.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/jest": "latest",
"carbon-components-svelte": "0.87.0",
"culls": "latest",
"prettier": "latest",
"svelte": "^5.19.4",
"typescript": "latest",
"vite": "latest",
"webpack": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carbon-design-system/carbon-preprocess-svelte.git"
},
"homepage": "https://github.com/carbon-design-system/carbon-preprocess-svelte",
"bugs": "https://github.com/carbon-design-system/carbon-preprocess-svelte/issues",
"keywords": [
"carbon",
"carbon design system",
"carbon preprocess",
"svelte",
"preprocessor",
"optimize imports",
"optimize CSS"
],
"files": [
"dist"
],
"maintainers": [
"Eric Liu (https://github.com/metonym)"
]
}