Skip to content

Commit 43fc3db

Browse files
committed
fix: types are not exported properly
1 parent 5d282cd commit 43fc3db

File tree

1 file changed

+87
-86
lines changed

1 file changed

+87
-86
lines changed

package.json

Lines changed: 87 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -1,88 +1,89 @@
11
{
2-
"name": "@neovici/cosmoz-spinner",
3-
"version": "1.0.1",
4-
"description": "A spinner component for Pion.js",
5-
"keywords": [
6-
"lit-html",
7-
"web-components"
8-
],
9-
"homepage": "https://github.com/Neovici/cosmoz-spinner#readme",
10-
"repository": {
11-
"type": "git",
12-
"url": "git+https://github.com/Neovici/cosmoz-spinner.git"
13-
},
14-
"license": "Apache-2.0",
15-
"author": "",
16-
"main": "dist/index.js",
17-
"directories": {
18-
"test": "test"
19-
},
20-
"files": [
21-
"dist/"
22-
],
23-
"scripts": {
24-
"lint": "tsc && eslint --cache .",
25-
"build": "tsc -p tsconfig.build.json",
26-
"start": "npm run storybook:start",
27-
"dev": "npm run storybook:start",
28-
"test": "wtr --coverage",
29-
"test:watch": "wtr --watch",
30-
"storybook:start": "storybook dev -p 8000",
31-
"storybook:build": "storybook build",
32-
"storybook:deploy": "storybook-to-ghpages",
33-
"storybook:preview": "npm run storybook:build && http-server ./storybook-static/ --silent",
34-
"prepare": "husky"
35-
},
36-
"release": {
37-
"plugins": [
38-
"@semantic-release/commit-analyzer",
39-
"@semantic-release/release-notes-generator",
40-
"@semantic-release/changelog",
41-
"@semantic-release/github",
42-
"@semantic-release/npm",
43-
"@semantic-release/git"
44-
],
45-
"branch": "main",
46-
"preset": "conventionalcommits"
47-
},
48-
"commitlint": {
49-
"extends": [
50-
"@commitlint/config-conventional"
51-
],
52-
"rules": {
53-
"body-max-line-length": [
54-
1,
55-
"always",
56-
100
57-
]
58-
}
59-
},
60-
"publishConfig": {
61-
"access": "public"
62-
},
63-
"exports": {
64-
".": "./dist/index.js",
65-
"./lightbox": "./dist/lightbox.js"
66-
},
67-
"dependencies": {
68-
"@pionjs/pion": "^2.5.2",
69-
"lit-html": "^3.3.1"
70-
},
71-
"devDependencies": {
72-
"@commitlint/cli": "^20.0.0",
73-
"@commitlint/config-conventional": "^20.0.0",
74-
"@neovici/cfg": "^2.5.1",
75-
"@open-wc/testing": "^4.0.0",
76-
"@semantic-release/changelog": "^6.0.0",
77-
"@semantic-release/git": "^10.0.0",
78-
"@storybook/web-components-vite": "^9.1.5",
79-
"@types/mocha": "^10.0.6",
80-
"@types/node": "^24.5.1",
81-
"esbuild": "^0.25.9",
82-
"http-server": "^14.1.1",
83-
"husky": "^9.0.11",
84-
"semantic-release": "^24.2.8",
85-
"storybook": "^9.1.5",
86-
"typescript": "^5.4.5"
87-
}
2+
"name": "@neovici/cosmoz-spinner",
3+
"version": "1.0.1",
4+
"description": "A spinner component for Pion.js",
5+
"keywords": [
6+
"lit-html",
7+
"web-components"
8+
],
9+
"homepage": "https://github.com/Neovici/cosmoz-spinner#readme",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/Neovici/cosmoz-spinner.git"
13+
},
14+
"license": "Apache-2.0",
15+
"author": "",
16+
"main": "dist/index.js",
17+
"types": "dist/index.d.ts",
18+
"directories": {
19+
"test": "test"
20+
},
21+
"files": [
22+
"dist/"
23+
],
24+
"scripts": {
25+
"lint": "tsc && eslint --cache .",
26+
"build": "tsc -p tsconfig.build.json",
27+
"start": "npm run storybook:start",
28+
"dev": "npm run storybook:start",
29+
"test": "wtr --coverage",
30+
"test:watch": "wtr --watch",
31+
"storybook:start": "storybook dev -p 8000",
32+
"storybook:build": "storybook build",
33+
"storybook:deploy": "storybook-to-ghpages",
34+
"storybook:preview": "npm run storybook:build && http-server ./storybook-static/ --silent",
35+
"prepare": "husky"
36+
},
37+
"release": {
38+
"plugins": [
39+
"@semantic-release/commit-analyzer",
40+
"@semantic-release/release-notes-generator",
41+
"@semantic-release/changelog",
42+
"@semantic-release/github",
43+
"@semantic-release/npm",
44+
"@semantic-release/git"
45+
],
46+
"branch": "main",
47+
"preset": "conventionalcommits"
48+
},
49+
"commitlint": {
50+
"extends": [
51+
"@commitlint/config-conventional"
52+
],
53+
"rules": {
54+
"body-max-line-length": [
55+
1,
56+
"always",
57+
100
58+
]
59+
}
60+
},
61+
"publishConfig": {
62+
"access": "public"
63+
},
64+
"exports": {
65+
".": "./dist/index.js",
66+
"./lightbox": "./dist/lightbox.js"
67+
},
68+
"dependencies": {
69+
"@pionjs/pion": "^2.5.2",
70+
"lit-html": "^3.3.1"
71+
},
72+
"devDependencies": {
73+
"@commitlint/cli": "^20.0.0",
74+
"@commitlint/config-conventional": "^20.0.0",
75+
"@neovici/cfg": "^2.5.1",
76+
"@open-wc/testing": "^4.0.0",
77+
"@semantic-release/changelog": "^6.0.0",
78+
"@semantic-release/git": "^10.0.0",
79+
"@storybook/web-components-vite": "^9.1.5",
80+
"@types/mocha": "^10.0.6",
81+
"@types/node": "^24.5.1",
82+
"esbuild": "^0.25.9",
83+
"http-server": "^14.1.1",
84+
"husky": "^9.0.11",
85+
"semantic-release": "^24.2.8",
86+
"storybook": "^9.1.5",
87+
"typescript": "^5.4.5"
88+
}
8889
}

0 commit comments

Comments
 (0)