-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
50 lines (50 loc) · 1.93 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
45
46
47
48
49
50
{
"private": true,
"name": "extension",
"packageManager": "[email protected]",
"description": "The monorepo of all things Extension.js, including the Extension.js CLI, its programs, packages, website, and documentation.",
"scripts": {
"clean": "turbo clean && rm -rf node_modules",
"changeset": "changeset",
"compile": "dotenv -- turbo run compile",
"cleanInstall": "pnpm clean && rm -rf pnpm-lock.yaml && pnpm install && pnpm compile && pnpm format && pnpm lint && pnpm types",
"extension": "dotenv -- ts-node ./programs/cli/dist/cli.js",
"format": "prettier --write \"**/*.{ts,tsx,md,js,json}\"",
"lint": "eslint .",
"release": "dotenv -- turbo run compile && changeset publish",
"test": "dotenv -- turbo run test",
"test:coverage": "dotenv -- turbo run test:coverage",
"test:dev": "dotenv -- turbo run test:dev",
"test:build": "dotenv -- turbo run test:build",
"test:create": "dotenv -- turbo run test:create",
"test:cli": "dotenv -- turbo run test:cli",
"test:watch": "dotenv -- turbo run test:watch",
"test:e2e": "pnpm exec playwright test",
"types": "pnpm tsc",
"version-packages": "changeset version",
"publish-packages": "turbo run compile lint test && changeset version && changeset publish",
"watch": "pnpm compile && dotenv -- turbo run watch --filter=./programs/* --concurrency=5"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@eslint/js": "^9.6.0",
"@playwright/test": "^1.47.0",
"@types/chrome": "^0.0.268",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"dotenv-cli": "^7.3.0",
"eslint": "^9.6.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.1.2",
"turbo": "^2.0.4"
},
"dependencies": {
"@types/firefox-webext-browser": "^120.0.4",
"typescript": "5.3.3"
}
}