-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.21 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
{
"name": "@atom-learning/icons",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"version": "1.19.0",
"description": "",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsm ./scripts/build-export.ts",
"clean": "del ./dist/",
"test": "yarn clean && yarn build",
"prepublishOnly": "yarn test",
"start:sandbox": "yarn build && vite serve sandbox"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Atom-Learning/icons.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Atom-Learning/icons/issues"
},
"homepage": "https://github.com/Atom-Learning/icons#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@svgr/core": "^6.2.1",
"@svgr/plugin-jsx": "^6.2.1",
"@svgr/plugin-svgo": "^6.2.0",
"change-case": "^4.1.2",
"del-cli": "^3.0.1",
"esbuild": "^0.20.2",
"glob": "^7.1.6",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"semantic-release": "^23.0.8",
"semantic-release-slack-bot": "^4.0.2",
"tsm": "^2.3.0",
"vite": "^2.6.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18"
},
"dependencies": {},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
],
[
"semantic-release-slack-bot",
{
"pattern": "main",
"notifyOnFail": true,
"notifyOnSuccess": true,
"packageName": "@atom-learning/icons"
}
]
]
}
}