-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
36 lines (36 loc) · 1.26 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
{
"name": "osmosmemo",
"version": "1.0.0",
"description": "A chrome extension that summarizes the current page into a GitHub markdown file",
"private": true,
"type": "module",
"scripts": {
"dev": "rm -rf dist && concurrently --raw npm:dev:*",
"build": "rm -rf dist && concurrently --raw npm:build:* && npm run pack",
"dev:pages": "npm run build:pages -- --watch",
"dev:assets": "npm run build:assets -- --watch",
"build:pages": "esbuild src/content-script.ts src/options.ts src/popup.ts --format=esm --sourcemap --bundle --outdir=dist/unpacked",
"build:assets": "node scripts/copy-assets.js --src public --target dist/unpacked",
"pack": "node scripts/pack.js --dir dist/unpacked",
"test": "tsx src/index.tests.ts",
"test:watch": "tsx --watch src/index.tests.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osmoscraft/osmosmemo.git"
},
"keywords": [],
"author": "osmoscraft",
"license": "MIT",
"bugs": {
"url": "https://github.com/osmoscraft/osmosmemo/issues"
},
"homepage": "https://github.com/osmoscraft/osmosmemo#readme",
"devDependencies": {
"@types/chrome": "^0.0.279",
"@types/node": "^22.8.6",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"tsx": "^4.19.2"
}
}