-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.43 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.43 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
{
"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.1.0",
"@playwright/cli": "^0.1.1",
"@playwright/test": "^1.58.2",
"ajv": "^8.18.0",
"esbuild": "^0.27.4",
"eslint": "^10.2.0",
"minimist": "^1.2.8",
"prettier": "3.8.2",
"stylelint": "^17.5.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-csstree-validator": "^4.0.0",
"ts-json-schema-generator": "^2.5.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2"
},
"dependencies": {
"immutable-json-patch": "^6.0.2",
"urlpattern-polyfill": "^10.1.0"
}
}