-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "quickcite",
"version": "1.1.0",
"description": "A Chrome extension to copy GitHub pull request information",
"main": "background.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"release": "bash scripts/bump_version.sh",
"release_verify": "bash scripts/prerelease_check.sh",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathIgnorePatterns=\\.e2e\\.test\\.js$",
"tests": "npm run test",
"e2e": "playwright test",
"generate-docs": "node scripts/generateSupportedSites.js"
},
"keywords": [
"github",
"pull request",
"chrome extension",
"productivity"
],
"author": "Jon Friesen <jon@quickcite.link>",
"license": "UNLICENSED",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/jonfriesen/quickcite.git"
},
"bugs": {
"url": "https://github.com/jonfriesen/quickcite/issues"
},
"jest": {
"transform": {}
},
"homepage": "https://quickcite.link",
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.28",
"@playwright/test": "^1.46.1",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"vite": "^4.5.2"
}
}