-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
43 lines (43 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
{
"name": "css-used-chrome-ext",
"version": "3.0.0",
"type": "module",
"description": "A chrome extension to get all css rules used by the selected DOM and its descendants.",
"scripts": {
"dev:content": "npm run build:ui && vite build --watch --config vite.config.content.js",
"dev:ui": "vite --config vite.config.ui.js",
"build:content": "tsc && vite build --minify --config vite.config.content.js",
"build:ui": "vite build --minify --config vite.config.ui.js",
"build": "npm run build:ui && npm run build:content"
},
"repository": {
"type": "git",
"url": "git+https://github.com/painty/CSS-Used-ChromeExt.git"
},
"keywords": [
"chrome-extension",
"chrome-devtools",
"css-usage",
"css-rules"
],
"author": "Bobscript",
"license": "MIT",
"bugs": {
"url": "https://github.com/painty/CSS-Used-ChromeExt/issues"
},
"homepage": "https://github.com/painty/CSS-Used-ChromeExt#readme",
"dependencies": {
"postcss": "^8.4.21",
"postcss-safe-parser": "^6.0.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.0.0",
"@tsconfig/svelte": "^3.0.0",
"@types/chrome": "^0.0.206",
"@types/postcss-safe-parser": "^5.0.1",
"svelte": "^3.54.0",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-plugin-environment": "^1.1.3"
}
}