Skip to content

Commit 9ce6352

Browse files
committed
fix: allow publishing package
1 parent c91acf6 commit 9ce6352

File tree

1 file changed

+86
-83
lines changed

1 file changed

+86
-83
lines changed

package.json

Lines changed: 86 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,88 @@
11
{
2-
"name": "@zwave-js/log-analyzer",
3-
"version": "0.0.0",
4-
"description": "AI powered log analyzer for Z-Wave JS",
5-
"keywords": [
6-
"zwave",
7-
"z-wave",
8-
"log",
9-
"analyzer"
10-
],
11-
"license": "MIT",
12-
"author": {
13-
"name": "AlCalzone",
14-
"email": "d.griesel@gmx.net"
15-
},
16-
"homepage": "https://zwave-js.github.io/log-analyzer/",
17-
"repository": {
18-
"type": "git",
19-
"url": "https://github.com/zwave-js/log-analyzer.git"
20-
},
21-
"bugs": {
22-
"url": "https://github.com/zwave-js/log-analyzer/issues"
23-
},
24-
"type": "module",
25-
"module": "./dist/index.js",
26-
"types": "./dist/index.d.ts",
27-
"bin": {
28-
"zwave-log-analyzer": "./dist/cli.js"
29-
},
30-
"files": [
31-
"dist/cli.js",
32-
"dist/index.{js,d.ts}",
33-
"dist/lib/ai/*.{js,d.ts}",
34-
"dist/lib/log-processor/*.{js,d.ts}",
35-
"dist/lib/types.{js,d.ts}",
36-
"dist/lib/zwave-log-analyzer.{js,d.ts}",
37-
"README.md",
38-
"LICENSE"
39-
],
40-
"scripts": {
41-
"dev": "vite",
42-
"build": "tsc -b && vite build && npm run build:cli",
43-
"build:cli": "tsc -p tsconfig.node.json",
44-
"lint": "eslint . --ext .ts,.tsx",
45-
"lint:fix": "eslint . --ext .ts,.tsx --fix",
46-
"format:check": "prettier .",
47-
"format": "prettier -w .",
48-
"preview": "vite preview",
49-
"test": "test/debug.sh",
50-
"release": "release-script"
51-
},
52-
"dependencies": {
53-
"@google/genai": "^1.13.0",
54-
"@zwave-js/core": "^15.10.0",
55-
"yargs": "^18.0.0"
56-
},
57-
"devDependencies": {
58-
"@alcalzone/release-script": "~3.8.0",
59-
"@alcalzone/release-script-plugin-license": "^3.7.0",
60-
"@emotion/react": "^11.14.0",
61-
"@emotion/styled": "^11.14.1",
62-
"@eslint/js": "^9.32.0",
63-
"@mui/icons-material": "^7.3.1",
64-
"@mui/material": "^7.3.1",
65-
"@types/node": "^22.17.1",
66-
"@types/react": "^19.1.9",
67-
"@types/react-dom": "^19.1.7",
68-
"@types/yargs": "^17.0.33",
69-
"@vitejs/plugin-react": "^4.7.0",
70-
"clsx": "^2.1.1",
71-
"eslint": "^9.32.0",
72-
"eslint-plugin-react-hooks": "^5.2.0",
73-
"eslint-plugin-react-refresh": "^0.4.20",
74-
"globals": "^16.3.0",
75-
"prettier": "^3.4.2",
76-
"react": "^19.1.1",
77-
"react-dom": "^19.1.1",
78-
"react-markdown": "^10.1.0",
79-
"tsx": "^4.20.3",
80-
"typescript": "~5.8.3",
81-
"typescript-eslint": "^8.39.0",
82-
"vite": "^7.1.0",
83-
"vite-plugin-svgr": "^4.3.0"
84-
}
2+
"name": "@zwave-js/log-analyzer",
3+
"version": "0.0.0",
4+
"publishConfig": {
5+
"access": "public"
6+
},
7+
"description": "AI powered log analyzer for Z-Wave JS",
8+
"keywords": [
9+
"zwave",
10+
"z-wave",
11+
"log",
12+
"analyzer"
13+
],
14+
"license": "MIT",
15+
"author": {
16+
"name": "AlCalzone",
17+
"email": "d.griesel@gmx.net"
18+
},
19+
"homepage": "https://zwave-js.github.io/log-analyzer/",
20+
"repository": {
21+
"type": "git",
22+
"url": "https://github.com/zwave-js/log-analyzer.git"
23+
},
24+
"bugs": {
25+
"url": "https://github.com/zwave-js/log-analyzer/issues"
26+
},
27+
"type": "module",
28+
"module": "./dist/index.js",
29+
"types": "./dist/index.d.ts",
30+
"bin": {
31+
"zwave-log-analyzer": "./dist/cli.js"
32+
},
33+
"files": [
34+
"dist/cli.js",
35+
"dist/index.{js,d.ts}",
36+
"dist/lib/ai/*.{js,d.ts}",
37+
"dist/lib/log-processor/*.{js,d.ts}",
38+
"dist/lib/types.{js,d.ts}",
39+
"dist/lib/zwave-log-analyzer.{js,d.ts}",
40+
"README.md",
41+
"LICENSE"
42+
],
43+
"scripts": {
44+
"dev": "vite",
45+
"build": "tsc -b && vite build && npm run build:cli",
46+
"build:cli": "tsc -p tsconfig.node.json",
47+
"lint": "eslint . --ext .ts,.tsx",
48+
"lint:fix": "eslint . --ext .ts,.tsx --fix",
49+
"format:check": "prettier .",
50+
"format": "prettier -w .",
51+
"preview": "vite preview",
52+
"test": "test/debug.sh",
53+
"release": "release-script"
54+
},
55+
"dependencies": {
56+
"@google/genai": "^1.13.0",
57+
"@zwave-js/core": "^15.10.0",
58+
"yargs": "^18.0.0"
59+
},
60+
"devDependencies": {
61+
"@alcalzone/release-script": "~3.8.0",
62+
"@alcalzone/release-script-plugin-license": "^3.7.0",
63+
"@emotion/react": "^11.14.0",
64+
"@emotion/styled": "^11.14.1",
65+
"@eslint/js": "^9.32.0",
66+
"@mui/icons-material": "^7.3.1",
67+
"@mui/material": "^7.3.1",
68+
"@types/node": "^22.17.1",
69+
"@types/react": "^19.1.9",
70+
"@types/react-dom": "^19.1.7",
71+
"@types/yargs": "^17.0.33",
72+
"@vitejs/plugin-react": "^4.7.0",
73+
"clsx": "^2.1.1",
74+
"eslint": "^9.32.0",
75+
"eslint-plugin-react-hooks": "^5.2.0",
76+
"eslint-plugin-react-refresh": "^0.4.20",
77+
"globals": "^16.3.0",
78+
"prettier": "^3.4.2",
79+
"react": "^19.1.1",
80+
"react-dom": "^19.1.1",
81+
"react-markdown": "^10.1.0",
82+
"tsx": "^4.20.3",
83+
"typescript": "~5.8.3",
84+
"typescript-eslint": "^8.39.0",
85+
"vite": "^7.1.0",
86+
"vite-plugin-svgr": "^4.3.0"
87+
}
8588
}

0 commit comments

Comments
 (0)