-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 951 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
{
"name": "langur-ext",
"module": "bundler.ts",
"version": "0.0.1",
"dependencies": {
"@extractus/article-extractor": "^8.0.6",
"@types/qs": "^6.9.11",
"astro": "^3.2.1",
"axios": "^1.6.7",
"bootstrap-icons": "^1.11.3",
"nanostores": "^0.9.5"
},
"devDependencies": {
"@types/chrome": "^0.0.246",
"@types/imagemagick": "^0.0.33",
"bun-types": "latest",
"imagemagick": "^0.1.3",
"prettier": "^3.0.3",
"tiny-glob": "^0.2.9"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && cd build-tools && bun run csp && bun bundler.ts",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,json,md}' '!build/**' '!node_modules/**'",
"csp": "bun extract-inline.ts",
"icons": "cd build-tools && bun create-icons.ts"
},
"type": "module"
}