-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.54 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@duckduckgo/content-scope-scripts",
"license": "Apache-2.0",
"files": [
"scripts",
"injected",
"special-pages",
"messaging",
"build",
"Sources/ContentScopeScripts/dist"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test-unit": "npm run test-unit --workspaces --if-present",
"test-int": "npm run test-int --workspaces --if-present",
"test-int-x": "npm run test-int-x --workspaces --if-present",
"test-int-snapshots": "npm run test-int-snapshots --workspaces --if-present",
"test-int-snapshots-update": "npm run test-int-snapshots-update --workspaces --if-present",
"test-clean-tree": "npm run build && sh scripts/check-for-changes.sh",
"docs": "typedoc",
"docs-preview": "npm run build-locales -w injected && npm run build -w special-pages && npm run docs && cp -R build/integration/ docs/build",
"docs-watch": "typedoc --watch",
"tsc": "tsc",
"tsc-strict-core": "node scripts/check-strict-core.js",
"tsc-watch": "tsc --watch",
"lint": "eslint . && npm run tsc && npm run tsc-strict-core && npm run check-surrogates -w injected && npm run lint-no-output-globals && npx prettier . --check",
"lint-no-output-globals": "eslint --no-inline-config --config build-output.eslint.config.js Sources/ContentScopeScripts/dist/contentScope.js",
"postlint": "npm run lint --workspaces --if-present",
"lint-fix": "eslint . --fix && npx prettier . --write && npm run tsc",
"stylelint": "npx stylelint \"**/*.css\"",
"stylelint-fix": "npx stylelint \"**/*.css\" --fix",
"serve": "npm run serve --workspace=injected",
"serve-special-pages": "npm run serve --workspace=special-pages"
},
"type": "module",
"workspaces": [
"injected",
"special-pages",
"messaging",
"types-generator"
],
"devDependencies": {
"@duckduckgo/eslint-config": "github:duckduckgo/eslint-config#v0.2.1",
"@playwright/cli": "^0.1.14",
"@playwright/test": "^1.61.1",
"ajv": "^8.20.0",
"esbuild": "^0.28.1",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"minimist": "^1.2.8",
"prettier": "3.8.4",
"stylelint": "^17.14.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-csstree-validator": "^4.0.0",
"ts-json-schema-generator": "^2.9.0",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1"
},
"dependencies": {
"immutable-json-patch": "^6.0.3",
"urlpattern-polyfill": "^10.1.0"
},
"overrides": {
"shell-quote": "^1.8.4",
"tmp": "^0.2.6"
}
}