forked from extension-js/extension.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.69 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
{
"private": true,
"scripts": {
"clean": "turbo clean && rm -rf node_modules",
"changeset": "changeset",
"compile": "dotenv -- turbo run compile",
"cleanInstall": "yarn cache clean && yarn clean && rm -rf yarn.lock && yarn install && yarn compile && yarn format && yarn lint && yarn tsc --noEmit && yarn test",
"extension": "dotenv -- ts-node ./programs/cli/dist/cli.js",
"format": "prettier --write \"**/*.{ts,tsx,md,js,json}\"",
"lint": "eslint . --config .eslintrc.js",
"release": "dotenv -- turbo run compile && changeset publish",
"test": "dotenv -- turbo run test",
"test:watch": "dotenv -- turbo run test:watch",
"types": "tsc --noEmit --project tsconfig.json",
"version-packages": "changeset version",
"publish-packages": "turbo run compile lint test && changeset version && changeset publish",
"watch": "yarn compile && dotenv -- turbo run watch --filter=./packages/* --filter=./programs/* --concurrency=24"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"dotenv-cli": "^7.3.0",
"eslint": "^8.56.0",
"eslint-config-extension-create": "*",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"turbo": "^1.10.11"
},
"name": "extension",
"packageManager": "[email protected]",
"description": "The monorepo of all things Extension, including the Extension CLI, its programs, packages, website, and documentation.",
"workspaces": [
"aliases/*",
"packages/*",
"programs/*",
"browser-extension-test-data",
"__TEST__/*"
],
"dependencies": {}
}