-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.61 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
{
"name": "@dankop/juicer-board",
"version": "1.4.2",
"private": false,
"type": "module",
"description": "Juicer chess board web component",
"author": {
"name": "Danko Petrovic",
"email": "dankopetrovic.bgd@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/dankobg/juicer-board.git"
},
"keywords": [
"chess board",
"web components",
"lit"
],
"license": "MIT",
"module": "./dist/juicer-board.js",
"types": "./dist/juicer-board.d.ts",
"exports": {
".": "./dist/juicer-board.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "node --import tsx --test ./src/**/*.test.ts"
},
"dependencies": {
"@lit-labs/observers": "^2.0.4",
"lit": "^3.2.1"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lit": "^1.15.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.4.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): set `package.json` to ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}