-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.24 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "uicons.js",
"version": "2.0.2",
"description": "UICONS JavaScript Library",
"repository": "https://github.com/TurtIeSocks/uicons.js",
"author": "TurtIeSocks <[email protected]>",
"homepage": "https://TurtIeSocks.github.io/uicons.js/",
"license": "MIT",
"private": false,
"type": "module",
"files": [
"dist"
],
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"scripts": {
"start": "vite",
"build": "vite build -- -r",
"build:ts": "vite build",
"test": "jest",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@na-ji/pogo-protos": "^2.153.0",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"commitizen": "^4.3.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-virtuoso": "^4.7.2",
"semantic-release": "^24.1.0",
"ts-jest": "^29.2.5",
"tslib": "^2.6.2",
"typescript": "^5.5.4",
"vite": "^5.4.1",
"vite-plugin-checker": "^0.7.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"pnpm-lock.yaml"
],
"message": "chore(release): ${nextRelease.gitTag} [skip ci]\n\n${nextRelease.notes}"
}
]
],
"preset": "angular"
}
}