-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
54 lines (54 loc) · 1.89 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
{
"name": "@duckduckgo/content-scope-scripts",
"license": "Apache-2.0",
"files": [
"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-clean-tree": "npm run build && sh scripts/check-for-changes.sh",
"docs": "typedoc",
"docs-watch": "typedoc --watch",
"tsc": "tsc",
"tsc-watch": "tsc --watch",
"lint": "eslint . && npm run tsc && 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": "http-server -c-1 --port 3220 integration-test/test-pages",
"serve-special-pages": "http-server -c-1 --port 3221 build/integration/pages"
},
"type": "module",
"workspaces": [
"injected",
"special-pages",
"messaging",
"types-generator"
],
"devDependencies": {
"@duckduckgo/eslint-config": "github:duckduckgo/eslint-config#v0.1.0",
"@playwright/test": "^1.48.2",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.13.0",
"minimist": "^1.2.8",
"prettier": "3.3.3",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-csstree-validator": "^3.0.0",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"dependencies": {
"immutable-json-patch": "^6.0.1"
}
}