-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.24 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.24 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
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
122
123
124
{
"name": "@neovici/cosmoz-treenode",
"version": "6.2.0",
"type": "module",
"description": "Utility class to manipulate a tree data structure.",
"keywords": [
"lit-element",
"web-components"
],
"homepage": "https://github.com/Neovici/cosmoz-treenode#readme",
"bugs": {
"url": "https://github.com/Neovici/cosmoz-treenode/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neovici/cosmoz-treenode.git"
},
"license": "Apache-2.0",
"author": "Neovici dev",
"main": "dist/cosmoz-treenode.js",
"module": "dist/cosmoz-treenode.js",
"types": "dist/cosmoz-treenode.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./cosmoz-treenode": {
"types": "./dist/cosmoz-treenode.d.ts",
"import": "./dist/cosmoz-treenode.js",
"default": "./dist/cosmoz-treenode.js"
}
},
"directories": {
"test": "test"
},
"files": [
"dist/",
"!dist/**/*.tsbuildinfo"
],
"scripts": {
"lint": "eslint --cache .",
"check:duplicates": "check-duplicate-components",
"start": "npm run storybook:start",
"test": "wtr --coverage",
"test:watch": "wtr --watch",
"prepare": "husky install && npm run build",
"prettier": "prettier --write \"**/*.{js,ts,json,css,md}\"",
"prettier:check": "prettier --check \"**/*.{js,ts,json,css,md}\"",
"prepublishOnly": "npm run build",
"build": "tsc",
"storybook:start": "storybook dev -p 8000",
"storybook:build": "storybook build",
"storybook:deploy": "storybook-to-ghpages",
"storybook:preview": "npm run storybook:build && web-dev-server --root-dir ./storybook-static/ --open"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"branch": "master"
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
1,
"always",
600
]
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@neovici/cosmoz-tree": "^3.6.2",
"@pionjs/pion": "^2.7.1"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@neovici/cfg": "^2.8.0",
"@open-wc/testing": "^4.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/web-components": "^8.0.0",
"@storybook/web-components-vite": "^8.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"globals": "^16.0.0",
"husky": "^8.0.0",
"lint-staged": "^16.2.7",
"semantic-release": "^25.0.2",
"storybook": "^8.0.0",
"storybook-dark-mode": "^3.0.3",
"typescript": "^5.3.3",
"vite": "^6.2.4"
}
}