-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.84 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.84 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@dvcol/side-feed",
"type": "module",
"version": "1.8.0",
"title": "Side Feed",
"packageManager": "pnpm@9.1.0",
"description": "Chrome extension to follow feeds.",
"author": "dvcol",
"license": "MIT",
"homepage": "https://github.com/dvcol/side-feed",
"repository": {
"type": "git",
"url": "https://github.com/dvcol/side-feed.git"
},
"bugs": "https://github.com/dvcol/side-feed/issues",
"files": [
"*.md",
"LICENSE",
"lib/dist"
],
"engines": {
"node": ">=20",
"pnpm": ">= 7"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "husky",
"clear": "rimraf dist",
"dist": "pnpm run clear && esno scripts/prepare.ts",
"type:watch": "tsc --noEmit --watch",
"vite:serve": "vite",
"vite:build": "vite build",
"vite:watch": "vite build --watch",
"vite:preview": "vite preview",
"svelte:check": "svelte-check --tsconfig ./tsconfig.app.json --compiler-warnings \"css-unused-selector:ignore\"",
"svelte:watch": "pnpm run svelte:check --watch",
"dev": "cross-env NODE_ENV=development run-p dist vite:serve",
"dev:web": "VITE_SOURCEMAP=true VITE_WEB=true VITE_BASE=/side-feed/ run-s dev",
"build": "cross-env NODE_ENV=production run-s dist svelte:check 'vite:build {@}' --",
"build:web": "VITE_WEB=true VITE_BASE=/side-feed/ run-s build",
"serve:web": "VITE_SOURCEMAP=true VITE_WEB=true VITE_BASE=/side-feed/ run-s build vite:preview",
"analyse": "vite-bundle-visualizer",
"test:unit": "vitest run --coverage --mode testing",
"test:watch": "vitest --mode testing",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"style": "stylelint '**/*.{svelte,css,scss,less,html}' --go '{\"gitignore\":true}'",
"style:fix": "pnpm run style --fix",
"release": "standard-version",
"release:changelog": "extract-changelog-release > RELEASE.md"
},
"dependencies": {
"@dvcol/common-utils": "^1.29.4",
"@dvcol/neo-svelte": "^1.1.2",
"@dvcol/svelte-simple-router": "^2.0.1",
"@dvcol/svelte-utils": "^1.17.1",
"@dvcol/web-extension-utils": "^3.5.3",
"svelte": "^5.26.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@dvcol/eslint-config": "^1.6.0",
"@dvcol/stylelint-plugin-presets": "^2.1.2",
"@prettier/plugin-xml": "^3.4.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tsconfig/node22": "^22.0.1",
"@tsconfig/svelte": "^5.0.4",
"@types/chrome": "^0.0.313",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.14.0",
"@types/webextension-polyfill": "^0.12.3",
"@vitest/coverage-v8": "^3.1.1",
"c8": "^10.1.3",
"chokidar": "^4.0.3",
"cross-env": "^7.0.3",
"eslint": "^9.24.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-svelte": "^3.5.1",
"esno": "^4.8.0",
"extract-changelog-release": "^1.0.2",
"fs-extra": "^11.3.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.5.0",
"magic-string": "^0.30.17",
"npm-run-all2": "^7.0.2",
"postcss": "^8.5.3",
"postcss-syntax": "^0.36.2",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.39.0",
"sass": "^1.86.3",
"standard-version": "^9.5.0",
"stylelint": "^16.18.0",
"svelte-check": "^4.1.5",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.5.4",
"vite": "^6.2.6",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-checker": "^0.9.1",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^3.1.1",
"webextension-polyfill": "^0.12.0"
},
"lint-staged": {
"*.{js,cjs,mjs,jsx,ts,tsx,vue,svelte,json,md,yml,html,md,svg,xml}": [
"eslint --fix"
],
"*.{css,scss,less,vue,svelte}": [
"stylelint --fix"
]
}
}