-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 5.03 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 5.03 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"version": "0.0.9",
"private": true,
"description": "Spectrum Web Components are a set of reusable, accessible, and customizable web components following the design language of Adobe Spectrum.",
"license": "Apache-2.0",
"author": "Adobe",
"homepage": "https://opensource.adobe.com/spectrum-web-components/",
"repository": {
"type": "git",
"url": "https://github.com/adobe/spectrum-web-components.git"
},
"bugs": {
"url": "https://github.com/adobe/spectrum-web-components/issues"
},
"type": "module",
"scripts": {
"build": "run-s build:2nd-gen build:1st-gen",
"build:1st-gen": "yarn workspace @spectrum-web-components/1st-gen build",
"build:2nd-gen": "yarn workspace @spectrum-web-components/2nd-gen build",
"format": "run-s --continue-on-error format:eslint format:styles format:prettier",
"format:eslint": "eslint ${LINT_PATH:-.} --cache --fix",
"format:prettier": "prettier ${LINT_PATH:-.} --cache --write",
"format:styles": "stylelint '${LINT_PATH:+$LINT_PATH/**/*.css}${LINT_PATH:-**/*.css}' --cache --fix --allow-empty-input",
"lint": "run-s --continue-on-error lint:eslint lint:styles lint:prettier lint:ai",
"lint:ai": "node .ai/scripts/validate.js",
"lint:1st-gen": "LINT_PATH=1st-gen yarn lint",
"lint:2nd-gen": "LINT_PATH=2nd-gen yarn lint",
"lint:eslint": "echo 'Linting with ESLint...' && eslint ${LINT_PATH:-.} --cache",
"lint:prettier": "echo 'Linting with Prettier...' && prettier ${LINT_PATH:-.} --cache --check",
"lint:styles": "echo 'Linting with Stylelint...' && stylelint '${LINT_PATH:+$LINT_PATH/**/*.css}${LINT_PATH:-**/*.css}' --cache --allow-empty-input",
"postinstall": "husky || true",
"publish": "node ./scripts/publish.js",
"publish:snapshot": "node ./scripts/publish.js --tag snapshot",
"start": "run-p start:2nd-gen start:1st-gen",
"start:1st-gen": "yarn workspace @spectrum-web-components/1st-gen start",
"start:2nd-gen": "yarn workspace @spectrum-web-components/2nd-gen start",
"test": "run-p test:2nd-gen test:1st-gen",
"test:1st-gen": "yarn workspace @spectrum-web-components/1st-gen test",
"test:2nd-gen": "yarn workspace @spectrum-web-components/2nd-gen test",
"test:a11y": "playwright test --config=playwright.a11y.config.ts",
"test:a11y:1st": "playwright test --config=playwright.a11y.config.ts --project=1st-gen",
"test:a11y:2nd": "playwright test --config=playwright.a11y.2ndgen.config.ts",
"test:a11y:report": "playwright show-report 2nd-gen/test/playwright-a11y/report",
"test:a11y:ui": "playwright test --config=playwright.a11y.config.ts --ui",
"generate:llms": "node scripts/generate-llms-txt.js",
"tokens:test": "yarn workspace @adobe/swc-tokens test && yarn workspace @adobe/postcss-token test && yarn workspace swc-vscode-token test",
"tokens:update": "yarn tokens:test && yarn workspace swc-vscode-token tokens && yarn workspace @adobe/spectrum-wc stylesheet:tokens && yarn workspace @adobe/spectrum-wc stylesheet:typography"
},
"workspaces": [
"1st-gen",
"1st-gen/packages/*",
"1st-gen/projects/*",
"1st-gen/tools/*",
"2nd-gen",
"2nd-gen/packages/*",
"2nd-gen/packages/tools/*",
"linters/*"
],
"resolutions": {
"@web/test-runner-coverage-v8": "patch:@web/test-runner-coverage-v8@npm%3A0.8.0#~/.yarn/patches/@web-test-runner-coverage-v8-npm-0.8.0-b19cf60e5f.patch",
"basic-ftp": "5.2.0",
"playwright": "1.53.1"
},
"devDependencies": {
"@axe-core/playwright": "4.11.2",
"@changesets/cli": "2.29.7",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@eslint/js": "9.39.2",
"@playwright/test": "1.53.1",
"@spectrum-web-components/eslint-plugin": "workspace:*",
"@spectrum-web-components/stylelint-header-plugin": "workspace:*",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "62.5.0",
"eslint-plugin-jsonc": "2.21.0",
"eslint-plugin-lit": "2.1.1",
"eslint-plugin-lit-a11y": "4.1.4",
"eslint-plugin-mdx": "3.6.2",
"eslint-plugin-notice": "1.0.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-storybook": "10.2.1",
"eslint-plugin-wc": "3.0.1",
"globals": "17.3.0",
"husky": "9.1.7",
"jsonc-eslint-parser": "2.4.2",
"lint-staged": "16.2.6",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"prettier-plugin-package": "1.4.0",
"replace-in-file": "8.3.0",
"start-server-and-test": "2.1.5",
"stylelint": "17.1.1",
"stylelint-config-standard": "40.0.0",
"stylelint-declaration-strict-value": "1.10.11",
"stylelint-order": "7.0.1",
"typescript-eslint": "8.54.0",
"yargs": "17.7.2"
},
"keywords": [
"design-system",
"spectrum",
"adobe",
"adobe-spectrum",
"web components",
"web-components",
"lit-element",
"lit-html"
],
"engines": {
"node": ">=24.11.1",
"yarn": ">=4.6.0"
},
"packageManager": "yarn@4.9.2"
}