-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.34 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
{
"name": "@startinblox/solid-data-permissioning",
"version": "0.0.0",
"description": "Startin'blox data-sharing module",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git@git.startinblox.com:components/solid-data-permissioning.git"
},
"author": "startinblox",
"license": "MIT",
"release": {
"branches": [
"master",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "major",
"release": "major"
},
{
"type": "minor",
"release": "minor"
},
{
"type": "*",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/gitlab",
"@semantic-release/npm"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"watch": "lit-localize build && vite",
"build": "lit-localize build && vite build",
"serve": "vite preview",
"cy:open": "cypress open --component",
"cy:run": "lit-localize build && cypress run --component",
"storybook": "lit-localize build && storybook dev -p 6006",
"build-storybook": "lit-localize build && storybook build",
"locale:extract": "lit-localize extract",
"locale:build": "lit-localize build"
},
"browserslist": [
"last 2 Chrome versions"
],
"dependencies": {
"@iconify-json/simple-line-icons": "^1.2.1",
"@lit/task": "^1.0.2",
"autoprefixer": "^10.4.21",
"cssnano": "^7.0.6",
"lit": "^3.2.1",
"postcss": "^8.5.3",
"postcss-preset-env": "^9.6.0",
"postcss-scss": "^4.0.9",
"sass": "^1.86.0",
"unplugin-icons": "^0.19.3",
"vite": "^6.2.2"
},
"devDependencies": {
"@lit/localize": "^0.12.2",
"@lit/localize-tools": "^0.8.0",
"@storybook/addon-essentials": "^8.6.7",
"@storybook/blocks": "^8.5.8",
"@storybook/web-components": "^8.5.8",
"@storybook/web-components-vite": "^8.6.7",
"cypress": "^14.2.0",
"cypress-ct-lit": "^1.0.0",
"lorem-ipsum": "^2.0.8",
"storybook": "^8.6.7"
}
}