-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.89 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
{
"name": "todoist-one-click",
"private": true,
"version": "1.3.1",
"type": "module",
"scripts": {
"dev:chrome": "npm run clear && rollup -c --watch --environment DEV_BROWSER:chrome,BUILD:development",
"dev:firefox": "npm run clear && rollup -c --watch --environment DEV_BROWSER:firefox,BUILD:development",
"test": "vitest run --exclude ./e2e",
"test:watch": "vitest --exclude ./e2e",
"e2e": "npm run build:chrome && npx playwright test -c ./e2e",
"e2e:ui": "npx playwright test -c ./e2e --ui",
"test:all": "npm run test && npm run e2e && npm run clear:all",
"clear": "rimraf dist",
"clear:all": "rimraf dist && rimraf packages",
"build:chrome": "npm run clear && rollup -c --environment DEV_BROWSER:chrome",
"build:firefox": "npm run clear && rollup -c --environment DEV_BROWSER:firefox",
"build:all": "npm run clear:all && DEV_BROWSER=chrome rollup -c --environment DEV_BROWSER:chrome && rollup -c --environment DEV_BROWSER:firefox",
"release:minor": "npm run test:all && npm version minor -m 'Release minor v%s' && npm run build:all",
"release:patch": "npm run test:all && npm version patch -m 'Release patch v%s' && npm run build:all",
"knip": "knip",
"lint": "npx @biomejs/biome check ."
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@playwright/test": "1.45.3",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"@types/chrome": "0.0.269",
"@types/node": "22.1.0",
"archiver": "7.0.1",
"knip": "5.27.0",
"rimraf": "6.0.1",
"rollup": "4.20.0",
"rollup-plugin-copy": "3.5.0",
"ts-lit-plugin": "2.0.2",
"tslib": "2.6.3",
"typescript": "5.5.4",
"vitest": "2.0.5"
},
"dependencies": {
"lit": "3.1.4"
}
}