-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.05 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
{
"name": "@openvoxproject/voxblocks",
"version": "0.10.0",
"description": "Web components for OpenVox community web sites and apps",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/OpenVoxProject/voxblocks.git"
},
"keywords": [
"web-components",
"lit",
"design-system",
"voxpupuli",
"openvox"
],
"files": [
"dist",
"src",
"!src/**/*.stories.ts"
],
"main": "./dist/voxblocks.js",
"module": "./dist/voxblocks.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/voxblocks.js"
},
"./voxblocks.css": "./dist/voxblocks.css",
"./cdn": "./dist/cdn/voxblocks.js",
"./cdn/voxblocks.css": "./dist/cdn/voxblocks.css"
},
"scripts": {
"prepare": "npm run build",
"build": "vite build && vite build --config vite.cdn.config.ts && tsc -p tsconfig.build.json",
"docs:dev": "rm -rf docs/assets docs/_data/manifest.json && concurrently -n vite,jekyll -c blue,magenta \"npm:docs:assets:watch\" \"npm:docs:jekyll:wait\"",
"docs:assets:watch": "vite build --config docs/vite.config.js --watch",
"docs:jekyll:wait": "wait-on docs/_data/manifest.json && npm run docs:jekyll",
"docs:jekyll": "BUNDLE_GEMFILE=docs/Gemfile bundle exec jekyll serve --livereload --source docs --destination docs/_site",
"docs:build": "vite build --config docs/vite.config.js && BUNDLE_GEMFILE=docs/Gemfile bundle exec jekyll build --source docs --destination docs/_site --config docs/_config.yml,docs/_config_production.yml",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"lit": "^3.2.0"
},
"devDependencies": {
"@storybook/web-components": "^10.5.5",
"@storybook/web-components-vite": "^10.5.5",
"concurrently": "^9.1.0",
"storybook": "^10.5.5",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"wait-on": "^9.1.0"
},
"allowScripts": {
"esbuild@0.25.12": true,
"esbuild@0.21.5": true
}
}