-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.94 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.94 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
{
"name": "ventrata-checkout-injector",
"version": "1.1.0",
"private": true,
"type": "module",
"author": "Matej Leško <lesko.matej.pu@gmail.com>",
"scripts": {
"dev": "node multiple-entries-config.js --watch",
"build": "rm -rf dist; node multiple-entries-config.js",
"package": "rm -rf dist ventrata-checkout-injector.zip; node multiple-entries-config.js; cd dist; zip -r ../ventrata-checkout-injector.zip *; cd ..",
"changelog": "changelogen",
"release": "changelogen --release && npm run package",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint . --cache --color --ignore-pattern 'worktrees/**'",
"format": "prettier . --write",
"knip": "knip",
"knip:fix": "knip --fix",
"knip:watch": "knip --watch",
"test": "vitest run",
"test:unit": "vitest run --cache"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tsconfig/svelte": "^5.0.4",
"@types/chrome": "^0.1.37",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"autoprefixer": "^10.4.19",
"changelogen": "0.6.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.39.3",
"globals": "^15.15.0",
"jsdom": "^28.1.0",
"knip": "^5.86.0",
"postcss": "^8.4.38",
"prettier": "^3.3.1",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^4.2.18",
"svelte-check": "^3.8.0",
"svelte-eslint-parser": "^0.39.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vitest": "^4.0.18"
},
"engines": {
"node": "^22",
"npm": "^11"
},
"dependencies": {
"@octokit/core": "^6.1.2",
"@octokit/plugin-rest-endpoint-methods": "^13.2.1",
"@svelteuidev/core": "^0.15.6",
"clsx": "^2.1.1",
"radix-icons-svelte": "^1.2.1"
}
}