-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.16 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.16 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
{
"name": "issuevista",
"version": "1.2.0",
"description": "Find unassigned open GitHub issues without pull requests - your gateway to open-source contribution",
"type": "module",
"author": "ascender1729 <https://github.com/ascender1729>",
"license": "MIT",
"homepage": "https://issuevista.vibetensor.com",
"repository": {
"type": "git",
"url": "https://github.com/VibeTensor/IssueVista.git"
},
"bugs": {
"url": "https://github.com/VibeTensor/IssueVista/issues"
},
"keywords": [
"github",
"issues",
"open-source",
"contribution",
"pull-requests",
"hacktoberfest",
"astro",
"svelte",
"github-api",
"graphql"
],
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"test:unit": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:all": "npm run test:unit && npm run test:e2e",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@astrojs/react": "^4.4.2",
"@astrojs/svelte": "^7.2.5",
"@unocss/astro": "^66.6.0",
"astro": "^5.16.11",
"framer-motion": "^12.34.3",
"graphql-request": "^7.4.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rough-notation": "^0.5.1",
"svelte": "^5.49.1",
"unocss": "^66.5.12"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.2",
"@vitest/ui": "^4.0.17",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-svelte": "^3.14.0",
"globals": "^17.3.0",
"happy-dom": "^20.1.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.4.1",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
}
}