-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.97 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
{
"name": "@modulify/m3-web",
"type": "module",
"version": "0.0.0",
"description": "Material design v3 implementation for web",
"workspaces": [
"m3-react",
"m3-foundation",
"m3-vue"
],
"scripts": {
"build": "yarn workspaces foreach -W run build",
"commitlint": "commitlint --edit",
"eslint": "yarn workspaces foreach -W run eslint",
"publish:foundation": "yarn workspace @modulify/m3-foundation npm publish --access public",
"publish:packages": "yarn publish:foundation && yarn publish:react && yarn publish:vue",
"publish:react": "yarn workspace @modulify/m3-react npm publish --access public",
"publish:vue": "yarn workspace @modulify/m3-vue npm publish --access public",
"release": "conventional-release",
"release:alpha": "conventional-release --prerelease alpha",
"release:beta": "conventional-release --prerelease beta",
"release:dry": "conventional-release --dry --verbose --tags",
"release:rc": "conventional-release --prerelease rc",
"test:e2e:react": "yarn workspace @modulify/m3-react test:e2e",
"test:e2e:vue": "yarn workspace @modulify/m3-vue test:e2e",
"test:e2e": "yarn test:e2e:react && yarn test:e2e:vue",
"test:e2e:coverage:react": "yarn workspace @modulify/m3-react test:e2e:coverage --coverage.reportsDirectory=../coverage/e2e-react",
"test:e2e:coverage:vue": "yarn workspace @modulify/m3-vue test:e2e:coverage --coverage.reportsDirectory=../coverage/e2e-vue",
"test:e2e:coverage": "yarn test:e2e:coverage:react && yarn test:e2e:coverage:vue",
"test:smoke": "yarn workspace @modulify/m3-react test:smoke && yarn workspace @modulify/m3-vue test:smoke",
"test": "vitest run",
"tsc": "yarn workspaces foreach -W run tsc",
"tsc:tests": "yarn workspace @modulify/m3-react tsc:tests && yarn workspace @modulify/m3-vue tsc:tests",
"tsc:e2e": "tsc -p tsconfig.e2e.json --skipLibCheck",
"tsc:foundation": "yarn workspace @modulify/m3-foundation tsc",
"tsc:react": "yarn workspace @modulify/m3-react tsc",
"tsc:vue": "yarn workspace @modulify/m3-vue tsc"
},
"devDependencies": {
"@commitlint/cli": "^21.1.0",
"@commitlint/config-conventional": "^21.1.0",
"@modulify/conventional-release": "^0.1.3",
"@types/semver": "^7.7.1",
"@vitest/browser": "^4.1.9",
"@vitest/browser-playwright": "^4.1.9",
"@vitest/coverage-istanbul": "^4.1.9",
"@vitest/ui": "^4.1.9",
"canvas": "^3.2.1",
"jsdom": "^29.1.1",
"nyc": "^18.0.0",
"playwright": "^1.61.1",
"typescript": "~6.0.3",
"vitest": "^4.1.9"
},
"resolutions": {
"@typescript-eslint/utils@npm:^8.48.0": "npm:8.62.0",
"typescript@npm:^5.9.3": "npm:6.0.3"
},
"release": {
"mode": "sync",
"dependencyPolicy": "exact",
"install": [
"--mode=update-lockfile"
]
},
"contributors": [
"Tatyana Komolyh <tatyana.comolyh@gmail.com>"
],
"packageManager": "yarn@4.6.0",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}