-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.96 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
{
"name": "poe-custom-elements",
"description": "Path of Exile custom elements",
"private": false,
"version": "0.3.14",
"type": "module",
"license": "MIT",
"keywords": [
"web components",
"custom elements",
"path of exile",
"poe"
],
"exports": {
"./types.js": "./dist/poe.types.js",
"./stash-tab.js": "./dist/elements/poe-stash-tab.js",
"./item-info.js": "./dist/elements/item-info/poe-item-info.js",
"./item.js": "./dist/elements/poe-item.js",
"./divination-card.js": "./dist/elements/divination-card/poe-divination-card.js",
"./divination-card/data.js": "./dist/elements/divination-card/data.js",
"./item-card.js": "./dist/elements/poe-item-card.js",
".": {
"types": "./dist/poe.types.d.ts",
"default": "./dist/poe.types.js"
},
"./lib/base_path.js": "./dist/lib/base_path.js"
},
"scripts": {
"dev": "vite",
"build": "tsc",
"lint": "lit-analyzer --strict --rules.no-invalid-css off && tsc --noEmit",
"ci": "pnpm run lint && pnpm run build",
"release": "pnpm run lint && pnpm run build && changeset publish",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --exit-zero-on-changes"
},
"dependencies": {
"@floating-ui/dom": "^1.6.12",
"lit": "^3.2.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@chromatic-com/storybook": "3.2.2",
"@custom-elements-manifest/analyzer": "^0.10.3",
"@storybook/addon-essentials": "8.4.3",
"@storybook/addon-links": "8.4.3",
"@storybook/blocks": "8.4.3",
"@storybook/test": "8.4.3",
"@storybook/web-components": "8.4.3",
"@storybook/web-components-vite": "8.4.3",
"@types/node": "^22.9.0",
"chromatic": "^11.18.1",
"lit-analyzer": "^2.0.3",
"storybook": "8.4.3",
"typescript": "^5.6.3",
"vite": "^5.4.11"
},
"files": [
"./custom-elements.json",
"./dist",
"CHANGELOG.md",
"LICENCE"
],
"publishConfig": {
"access": "public"
},
"customElements": "./custom-elements.json"
}