-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.12 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.12 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
{
"author": "piro <piro.haniwa@gmail.com> (https://kkweb.io/)",
"bugs": {
"url": "https://github.com/piro0919/macopy/issues"
},
"dependencies": {
"@tauri-apps/api": "^2.9.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-use-measure": "2.1.7",
"ress": "5.0.2"
},
"description": "A lightweight and fast clipboard history manager for macOS, inspired by Clipy",
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@eslint/compat": "1.2.7",
"@eslint/eslintrc": "^3",
"@eslint/js": "9.23.0",
"@secretlint/secretlint-rule-preset-recommend": "9.2.0",
"@tauri-apps/cli": "^2.9.6",
"@types/node": "20.17.30",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.2",
"@typescript-eslint/eslint-plugin": "8.28.0",
"@typescript-eslint/parser": "8.28.0",
"@uphold/commitlint-config": "1.1.1",
"@vitejs/plugin-react": "4.3.4",
"dotenv-cli": "8.0.0",
"eslint": "^9",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-css": "0.11.0",
"eslint-plugin-css-modules": "2.12.0",
"eslint-plugin-ext": "0.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-perfectionist": "4.10.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-unused-imports": "4.1.4",
"eslint-plugin-write-good-comments": "0.2.0",
"knip": "^5.82.1",
"lefthook": "1.11.5",
"prettier": "3.5.3",
"secretlint": "9.2.0",
"stylelint": "16.17.0",
"stylelint-config-css-modules": "4.4.0",
"stylelint-config-recommended": "15.0.0",
"stylelint-css-modules-no-global-scoped-selector": "1.0.2",
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
"stylelint-high-performance-animation": "1.11.0",
"stylelint-no-unused-selectors": "1.0.40",
"stylelint-order": "6.0.4",
"typescript": "5.8.3",
"vite": "6.2.5"
},
"keywords": [
"clipboard",
"clipboard-manager",
"clipboard-history",
"macos",
"tauri",
"react",
"typescript",
"menubar",
"productivity"
],
"license": "ISC",
"name": "macopy",
"overrides": {
"stylelint-css-modules-no-global-scoped-selector": {
"stylelint": "16.17.0"
},
"stylelint-no-unused-selectors": {
"stylelint": "16.17.0"
}
},
"productName": "Macopy",
"repository": {
"type": "git",
"url": "https://github.com/piro0919/macopy.git"
},
"scripts": {
"build": "tauri build && npm run codesign",
"codesign": "codesign --deep --force --sign - 'src/target/release/bundle/macos/Macopy.app'",
"dev": "tauri dev",
"dev:lp": "npm --prefix lp run dev",
"generate-icon": "bash scripts/generate-icon.sh",
"lint": "npx eslint",
"lint:fix": "npx eslint --fix",
"lint:style": "stylelint --fix '**/*.css'",
"prettier": "prettier --write .",
"type-check": "tsc --noEmit",
"vite:build": "vite build --sourcemap false",
"vite:dev": "vite"
},
"version": "0.3.0"
}