-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.35 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
{
"name": "shortcut-assistant",
"version": "3.9.3",
"description": "A browser extension for power users of Shortcut",
"main": "src/index.ts",
"repository": "https://github.com/JensAstrup/shortcut-assistant",
"author": "Jens Astrup",
"scripts": {
"dev": "webpack --config webpack.config.dev.js",
"build-css": "postcss src/styles/index.css -o src/styles/output.css",
"test": "TZ='UTC' jest --config jest.config.js",
"test-coverage": "TZ='UTC' jest --coverage --config jest.config.js",
"lint": "eslint -c eslint.config.mjs src",
"lint-fix": "eslint -c eslint.config.mjs src --fix",
"build": "ts-node src/build-manifest.ts",
"build:react": "ENABLE_REACT=true ts-node src/build-manifest.ts",
"dist:common": "NODE_ENV=production npx webpack && cd build && zip -r ../dist/dist.zip . -x \"coverage*\" \"*/*.test.js\"",
"dist": "yarn dist:common",
"dist:react": "ENABLE_REACT=true yarn dist:common",
"version-up": "tsx scripts/update-version.mts",
"version": "tsx scripts/update-env-version.mts && yarn build",
"postversion": "tsx scripts/post-version.mts"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/compat": "^1.2.9",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.20.0",
"@tailwindcss/typography": "0.5.16",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/chrome": "^0.0.290",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.15.14",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "10.4.20",
"babel-jest": "^29.7.0",
"babel-loader": "9.2.1",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.2",
"daisyui": "5.0.35",
"dotenv": "17.2.3",
"eslint": "^8.57.0",
"eslint-config-yenz": "^8.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-perfectionist": "^4.8.0",
"globals": "^16.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.5.20",
"postcss-cli": "11.0.0",
"postcss-import": "16.1.0",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"tailwindcss": "3.4.17",
"ts-loader": "^9.5.1",
"tsx": "^4.19.4",
"typescript": "^5.7.3",
"webpack": "^5.99.7",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-scroll-area": "1.2.9",
"@radix-ui/react-slot": "1.2.0",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.18",
"dotenv-webpack": "8.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.511.0",
"next-themes": "0.4.6",
"node-html-parser": "^7.0.1",
"openai": "4.97.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sonner": "2.0.7",
"tailwind-merge": "^3.2.0",
"ts-jest": "^29.4.5",
"tw-animate-css": "^1.4.0",
"uuid": "^11.1.0",
"vaul": "^1.1.2"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}