-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.42 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.42 KB
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": "tidytabs",
"version": "1.2.0",
"description": "AI-powered tab organization using OpenRouter",
"type": "module",
"scripts": {
"use:manifest:chromium": "cp manifest.chrome.json manifest.json",
"use:manifest:firefox": "cp manifest.firefox.json manifest.json",
"build": "npm run build:chromium && npm run build:firefox && npm run use:manifest:chromium",
"build:chromium": "npm run use:manifest:chromium && extension build --browser chromium && VERSION=$(node -p \"require('./package.json').version.replace(/\\./g, '-')\") && cd dist/chromium && zip -r ../../tidytabs-chromium-v-$VERSION.zip .",
"build:firefox": "npm run use:manifest:firefox && extension build --browser firefox && VERSION=$(node -p \"require('./package.json').version.replace(/\\./g, '-')\") && cd dist/firefox && zip -r ../../tidytabs-firefox-v-$VERSION.zip .",
"dev": "extension dev",
"preview": "extension preview",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@jest/globals": "^29.7.0",
"babel-jest": "^30.2.0",
"extension": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}