-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 891 Bytes
/
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
{
"name": "twitter-superunfollow",
"version": "1.0.0",
"description": "Unfollow Twitter accounts based on keyword. Automatically.",
"main": "dist/content.js",
"type": "module",
"scripts": {
"dev": "bun run build --watch",
"build": "bun run tsc && bun run lint && bun build.config.ts",
"tsc": "tsc",
"lint": "biome check . --write --unsafe",
"bundle": "bun run build && zip -r extension.zip dist"
},
"keywords": [
"twitter",
"unfollow",
"twittter mass unfollow",
"chrome extension"
],
"author": "gnostic",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@nanostores/logger": "^0.3.0",
"@types/bun": "^1.1.6",
"@types/chrome": "^0.0.268",
"esbuild": "^0.23.0",
"kleur": "^4.1.5",
"typescript": "^5.5.4"
},
"dependencies": {
"@nanostores/persistent": "^0.10.1",
"@plasmohq/storage": "^1.8.1",
"nanostores": "^0.10.3"
}
}