-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "inner-ink",
"version": "2.2.0",
"type": "module",
"repository": "https://github.com/knownasnaffy/inner-ink",
"private": true,
"scripts": {
"build": "pnpm --filter=app build",
"dev": "pnpm --filter=app dev",
"format": "prettier . --write",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-staged": "lint-staged",
"prepare": "husky",
"release": "semantic-release"
},
"devDependencies": {
"prettier-plugin-tailwindcss": "^0.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-unicorn": "^56.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-pkg": "^0.18.0",
"semantic-release": "^23.0.0",
"typescript": "^5.3.3"
},
"lint-staged": {
"**/*.{ts,tsx}": "eslint --fix --report-unused-disable-directives --max-warnings 0",
"!./pnpm-lock.yaml": "prettier --ignore-unknown --write"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
"release-artifacts/**"
],
"releaseNameTemplate": "Inner Ink v<%= nextRelease.version %>"
}
],
[
"@semantic-release/git",
{
"message": "chore(release): v${nextRelease.version}\n\n${nextRelease.notes}"
}
]
],
"branches": [
"main"
]
}
}