-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.56 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "istrust",
"version": "4.5.0",
"description": "Verify the trustworthiness of any website",
"homepage": "https://github.com/Internet-Society-Belgium/isTrust#readme",
"bugs": {
"url": "https://github.com/Internet-Society-Belgium/isTrust/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Internet-Society-Belgium/isTrust.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": "Julien Taes",
"type": "module",
"workspaces": [
"configs/*",
"packages/*",
"apps/*"
],
"scripts": {
"bundle": "turbo bundle",
"bundle:webextension": "turbo bundle --filter=webextension",
"bundle:website": "turbo bundle --filter=website",
"check-types": "turbo check-types",
"clean": "turbo clean && rm -rf .turbo node_modules",
"commit": "cz",
"dev:webextension": "turbo dev --filter=webextension --filter=./packages/*",
"dev:website": "turbo dev --filter=website --filter=./packages/*",
"format": "prettier --write \"*.{js,ts,json}\" && turbo format",
"lint": "turbo lint",
"release": "release-it",
"test": "turbo test"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@istrust/prettier-config": "*",
"@release-it/bumper": "^7.0.5",
"auto-changelog": "^2.5.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"prettier": "^3.2.5",
"release-it": "^20.0.1",
"turbo": "^2.5.4"
},
"packageManager": "npm@11.11.0",
"engines": {
"node": ">=24.0.0"
}
}