-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
98 lines (98 loc) · 3.54 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
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
{
"name": "ao3-enhancements",
"type": "module",
"version": "0.5.7",
"private": true,
"description": "Various tweaks and enhancements for ArchiveOfOurOwn.org",
"author": "jsmnbom",
"license": "MIT",
"imports": {
"#uno.config": "./uno.config.ts",
"#dom": "./src/common/dom.ts",
"#common": "./src/common/index.ts",
"#img/*": "./src/img/*",
"#icons/*": "./src/icons/*",
"#content_script/*": "./src/content_script/*"
},
"scripts": {
"clean": "rm -rf build",
"build": "bun run build:prod:firefox && bun run build:prod:chrome",
"dist": "bun run scripts/dist.ts",
"dist:lint": "bun run dist:firefox:lint",
"build:dev:firefox": "BROWSER=firefox NODE_ENV=development bun scripts/builder/build.ts build",
"build:prod:firefox": "BROWSER=firefox NODE_ENV=production bun scripts/builder/build.ts build",
"serve:dev:firefox": "BROWSER=firefox NODE_ENV=development bun scripts/builder/build.ts serve",
"serve:prod:firefox": "BROWSER=firefox NODE_ENV=production bun scripts/builder/build.ts serve",
"start:firefox": "web-ext --config=scripts/web-ext.firefox.cjs run",
"start:firefox-android": "web-ext --config=scripts/web-ext.firefox-android.cjs run --target firefox-android",
"dist:firefox:lint": "web-ext --config=scripts/web-ext.firefox.cjs lint",
"build:dev:chrome": "BROWSER=chrome NODE_ENV=development bun scripts/builder/build.ts build",
"build:prod:chrome": "BROWSER=chrome NODE_ENV=production bun scripts/builder/build.ts build",
"serve:dev:chrome": "BROWSER=chrome NODE_ENV=development bun scripts/builder/build.ts serve",
"serve:prod:chrome": "BROWSER=chrome NODE_ENV=production bun scripts/builder/build.ts serve",
"start:chrome": "web-ext --config=scripts/web-ext.chrome.cjs run --target chromium"
},
"dependencies": {
"@antfu/utils": "^0.7.10",
"@iconify/json": "^2.2.274",
"@vueuse/core": "^11.2.0",
"change-case": "^5.4.4",
"radix-vue": "^1.9.10",
"vue": "^3.5.13"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@iconify/utils": "^2.1.33",
"@types/bun": "^1.1.13",
"@types/firefox-webext-browser": "^120.0.4",
"@types/semver": "^7.5.8",
"@unocss/core": "^0.64.1",
"@unocss/eslint-plugin": "^0.64.1",
"@unocss/preset-attributify": "^0.64.1",
"@unocss/preset-icons": "^0.64.1",
"@unocss/preset-uno": "^0.64.1",
"@unocss/rule-utils": "^0.64.1",
"@unocss/transformer-directives": "^0.64.1",
"@unocss/transformer-variant-group": "^0.64.1",
"@unocss/vite": "^0.64.1",
"@vitejs/plugin-vue": "^5.2.0",
"@vue/reactivity": "^3.5.13",
"@vue/runtime-core": "^3.5.13",
"@vue/runtime-dom": "^3.5.13",
"chalk": "^5.3.0",
"chokidar": "^4.0.1",
"dot-prop": "^9.0.0",
"esbuild": "^0.24.0",
"escape-string-regexp": "^5.0.0",
"eslint": "^9.15.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-format": "^0.1.2",
"lightningcss": "^1.28.1",
"nanoid": "^5.0.8",
"parse5": "^7.2.1",
"preact": "^10.24.3",
"semver": "^7.6.3",
"svgo": "^3.3.2",
"type-fest": "^4.27.0",
"typed-query-selector": "^2.12.0",
"typescript": "5.5.3",
"unimport": "^3.13.2",
"unocss-preset-animations": "^1.1.0",
"unplugin": "^1.16.0",
"unplugin-auto-import": "^0.18.5",
"unplugin-icons": "^0.20.1",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.11",
"web-ext": "^8.3.0"
},
"trustedDependencies": [
"esbuild"
],
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"node-fetch"
]
}
}
}