-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.29 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.29 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
{
"name": "webcore",
"type": "module",
"version": "1.4.0",
"scripts": {
"prepare": "husky",
"pre-commit": "lint-staged",
"dev": "astro dev",
"start": "astro preview",
"build": "astro check && astro build",
"build:package": "node scripts/build.js",
"compile": "node scripts/sass.js",
"test": "vitest run && npm run test:sass",
"test:dev": "vitest",
"test:run": "vitest run",
"test:sass": "vitest run src/tests/unit/scss.test.js --config astro.config.mjs",
"test:e2e": "playwright test",
"test:e2e:update": "playwright test --update-snapshots",
"test:e2e:ui": "playwright test --ui",
"create-component": "node scripts/createComponent.js",
"lint": "eslint src/**/* --fix"
},
"devDependencies": {
"@astrojs/check": "0.9.6",
"@astrojs/node": "9.5.4",
"@astrojs/react": "4.4.2",
"@astrojs/svelte": "7.2.5",
"@eslint/js": "9.39.3",
"@playwright/test": "1.58.2",
"@types/node": "25.3.0",
"@typescript-eslint/parser": "8.56.1",
"astro": "5.17.3",
"astro-eslint-parser": "1.3.0",
"eslint": "9.39.3",
"eslint-plugin-astro": "1.6.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-svelte": "3.15.0",
"husky": "9.1.7",
"jsdom": "28.1.0",
"lint-staged": "16.2.7",
"react": "19.2.4",
"react-dom": "19.2.4",
"sass": "1.97.3",
"sass-true": "10.1.0",
"svelte": "5.53.3",
"svelte-eslint-parser": "1.5.1",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.0.18",
"webcoreui": "1.4.0"
},
"exports": {
".": "./index.js",
"./astro": "./astro.js",
"./svelte": "./svelte.js",
"./react": "./react.js",
"./icons": "./icons.js",
"./integration": "./integration.js",
"./styles": "./scss/index.scss",
"./config": "./scss/config.scss"
},
"files": [
"components",
"icons",
"scss",
"utils",
"astro.d.ts",
"astro.js",
"icons.d.ts",
"icons.js",
"svelte.d.ts",
"svelte.js",
"react.d.ts",
"react.js",
"index.js",
"index.d.ts",
"integration.js",
"integration.d.ts",
"README.md",
"LICENSE"
],
"license": "MIT",
"description": "UI component and template library for Astro, Svelte, and React apps styled with Sass.",
"keywords": [
"webcore",
"components",
"ui components",
"ui library",
"component library",
"withastro",
"astro",
"astro ui",
"astro ui library",
"astro-component",
"astro components",
"svelte components",
"react components"
],
"homepage": "https://webcoreui.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/Frontendland/webcoreui.git"
},
"bugs": {
"url": "https://github.com/Frontendland/webcoreui/issues"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,svelte,astro}": "eslint src/**/*"
}
}