-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.78 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.78 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
{
"name": "@jaspero/web-components",
"description": "A collection of web-components",
"version": "0.0.0-development",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "npm run dev -s",
"dev": "concurrently \"npm run dev:demo\" \"npm run dev:lib\"",
"dev:demo": "vite --config vite.demo.config.ts",
"dev:lib": "vite build --watch",
"build": "npm run build:lib && npm run build:manifest",
"build:lib": "vite build && node process.js",
"build:manifest": "cem analyze",
"build:demo": "vite build --config vite.demo.config.ts",
"preview": "vite preview --config vite.demo.config.ts",
"check": "svelte-check --tsconfig ./tsconfig.json",
"format": "prettier --write .",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "0.10.4",
"@sveltejs/vite-plugin-svelte": "5.1.1",
"@tsconfig/svelte": "5.0.4",
"autoprefixer": "10.4.20",
"concurrently": "9.0.1",
"custom-element-vs-code-integration": "1.4.1",
"esbuild": "^0.28.0",
"firebase": "11.2.0",
"glob": "11.1.0",
"postcss": "8.4.47",
"postcss-nested": "6.2.0",
"prettier": "3.3.3",
"prettier-plugin-svelte": "3.2.6",
"semantic-release": "25.0.2",
"svelte": "5.53.7",
"svelte-check": "4.0.2",
"svelte-preprocess": "6.0.2",
"tslib": "2.7.0",
"typescript": "5.6.2",
"vite": "6.4.1",
"vite-plugin-dts": "4.5.4"
},
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"web-components",
"svelte"
],
"repository": {
"type": "git",
"url": "https://github.com/Jaspero/web-components.git"
},
"release": {
"branches": [
"main"
]
},
"engines": {
"node": ">=22.14.0"
},
"customElements": "dist/custom-elements.json"
}