-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@bedframe/monorepo",
"description": "Bedframe - Your Browser Extension Development Framework (monorepo)",
"author": {
"name": "Joe Nyaggah",
"url": "https://bedframe.dev"
},
"version": "0.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo telemetry disable && turbo run build",
"build:pack": "turbo telemetry disable && turbo run build:pack",
"format": "turbo run format",
"lint": "turbo run lint",
"lint:format": "turbo telemetry disable && turbo run lint:format",
"cz": "cz",
"prerelease": "turbo telemetry disable && turbo run format lint build",
"release": "turbo telemetry disable && turbo run format lint build && changeset version && changeset publish",
"prepare": "husky || true"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/chrome": "^0.0.287",
"@types/node": "^22.10.2",
"@types/prompts": "^2.4.9",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-config-bedframe": "workspace:^",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rollup": "^4.27.3",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nyaggah/bedframe.git"
},
"bugs": {
"url": "https://github.com/nyaggah/bedframe/issues"
},
"homepage": "https://bedframe.dev",
"packageManager": "[email protected]+sha512.127dc83b9ea10c32be65d22a8efb4a65fb952e8fefbdfded39bdc3c97efc32d31b48b00420df2c1187ace28c921c902f0cb5a134a4d032b8b5295cbfa2c681e2"
}