-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 4.26 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
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
113
114
115
116
117
118
119
120
121
{
"name": "@sesamy/sesamy-components",
"description": "Shareable web components library built with Vite + Svelte",
"version": "2.6.2",
"type": "module",
"module": "dist/lib/sesamy-components.es.js",
"main": "dist/lib/sesamy-components.umd.js",
"types": "dist/lib/sesamy-components.d.ts",
"exports": {
".": {
"types": "./dist/lib/sesamy-components.d.ts",
"import": "./dist/lib/sesamy-components.es.js",
"require": "./dist/lib/sesamy-components.umd.js"
}
},
"sideEffects": false,
"scripts": {
"dev": "vite --config vite.demo.config.ts",
"build": "yarn build:demo && yarn build:lib",
"build:lib": "vite build --config vite.lib.config.ts",
"build:demo": "vite build --config vite.demo.config.ts",
"preview": "vite preview --config vite.demo.config.ts",
"check": "svelte-check --tsconfig ./tsconfig.json",
"prepublishOnly": "yarn run build:lib",
"semantic-release": "semantic-release",
"storybook:serve": "npx http-server storybook-static",
"storybook": "yarn run build:lib && storybook dev -p 6006",
"test": "yarn build:storybook && playwright test",
"build:storybook": "yarn run build:lib && storybook build",
"svg:generate": "svgo -f ./packages/lib/src/icons -o ./packages/lib/src/icons && node ./scripts/icon.js ./packages/lib/src/icons --generate-types",
"pull-translations": "i18nexus pull -k UqoFFUDIqHedrUA4OlDXwg --path ./packages/lib/src/locales && prettier --write ./packages/lib/src/locales/**/*.json && yarn sort-translations",
"sort-translations": "sort-json ./packages/lib/src/locales/**/*.json",
"e2e:open-docker": "docker run --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.49.1-noble /bin/bash"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": true,
"tarballDir": "dist"
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"devDependencies": {
"@ape-egg/tailwind-rows-columns": "^1.0.2",
"@chromatic-com/storybook": "^3.2.2",
"@playwright/test": "1.49.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@sesamy/sesamy-js": "1.34.4",
"@storybook/addon-controls": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-svelte-csf": "^4.2.0",
"@storybook/blocks": "^8.4.7",
"@storybook/svelte": "^8.4.7",
"@storybook/svelte-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/web-components": "^8.4.7",
"@storybook/web-components-vite": "^8.4.7",
"@sveltejs/vite-plugin-svelte": "^5.0.2",
"@tailwindcss/container-queries": "^0.1.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.6",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22.10.2",
"autoprefixer": "^10.4.20",
"i18nexus-cli": "^3.5.0",
"jsdom": "^25.0.1",
"lit": "^3.2.1",
"lit-html": "^3.2.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"semantic-release": "^24.2.0",
"sort-json": "^2.0.1",
"storybook": "^8.4.7",
"svelte": "5.19.1",
"svelte-check": "^4.1.1",
"svelte-preprocess": "^6.0.3",
"svgo": "^3.3.2",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.16",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-static-copy": "^2.2.0",
"vitest": "^2.1.8"
},
"files": [
"dist/lib"
],
"peerDependencies": {
"@sesamy/sesamy-js": "1.34.4"
},
"dependencies": {
"@zootools/email-spell-checker": "^1.12.0",
"lucide-svelte": "^0.473.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}