-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
102 lines (102 loc) · 3.44 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
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
{
"name": "@primer/view-components",
"version": "0.35.1",
"description": "ViewComponents for the Primer Design System",
"main": "app/assets/javascripts/primer_view_components.js",
"module": "app/components/primer/primer.js",
"types": "app/components/primer/primer.d.ts",
"repository": "primer/view_components",
"keywords": [
"rails",
"view_components",
"components",
"library",
"design-system"
],
"author": "GitHub, Inc.",
"license": "MIT",
"homepage": "https://github.com/primer/view_components#readme",
"bugs": {
"url": "https://github.com/primer/view_components/issues"
},
"files": [
"static/*.json",
"app/assets/**/*",
"app/components/primer/**/*.js",
"app/components/primer/**/*.css",
"app/components/primer/**/*.css.json",
"app/components/primer/**/*.d.ts",
"app/lib/primer/forms/**/*.js",
"app/lib/primer/forms/**/*.d.ts"
],
"scripts": {
"clean": "git clean -fdX -- app/",
"prepare": "script/build-assets",
"lint": "npm run lint:stylelint && npm run lint:eslint",
"lint:stylelint": "stylelint --rd -q 'app/components/**/*.pcss'",
"lint:stylelint:fix": "npm run lint:stylelint -- --fix",
"lint:eslint": "eslint 'app/components/**/*.ts'",
"lint:eslint:fix": "eslint 'app/components/**/*.ts' --fix",
"changeset:version": "changeset version && script/version",
"build": "script/build-assets",
"build:js": "script/build-assets js",
"build:css": "script/build-assets css"
},
"dependencies": {
"@github/auto-check-element": "^5.2.0",
"@github/auto-complete-element": "^3.6.2",
"@github/catalyst": "^1.6.0",
"@github/clipboard-copy-element": "^1.3.0",
"@github/details-menu-element": "^1.0.12",
"@github/image-crop-element": "^5.0.0",
"@github/include-fragment-element": "^6.1.1",
"@github/relative-time-element": "^4.0.0",
"@github/remote-input-element": "^0.4.0",
"@github/tab-container-element": "^3.1.2",
"@oddbird/popover-polyfill": "^0.4.0",
"@primer/behaviors": "^1.3.4"
},
"peerDependencies": {
"@primer/primitives": "9.x || 10.x"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.24.1",
"@github/axe-github": "^0.7.0",
"@github/browserslist-config": "^1.0.0",
"@github/markdownlint-github": "^0.6.0",
"@github/prettier-config": "0.0.6",
"@playwright/test": "^1.35.1",
"@primer/css": "21.5.0",
"@primer/stylelint-config": "^13.1.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"axe-core": "^4.7.1",
"chokidar-cli": "^3.0.0",
"cssnano": "^7.0.1",
"eslint": "^8.23.1",
"eslint-plugin-custom-elements": "^0.0.8",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-prettier": "^5.0.0",
"markdownlint-cli2": "^0.14.0",
"mocha": "^10.0.0",
"playwright": "^1.35.1",
"postcss": "^8.4.16",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.0",
"postcss-mixins": "^11.0.1",
"postcss-preset-env": "^10.0.2",
"prettier": "^3.3.2",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"stylelint-actions-formatters": "^16.3.1",
"tslib": "^2.4.0",
"typescript": "^5.2.2",
"vite": "^5.4.3",
"vite-plugin-ruby": "^5.1.0"
},
"prettier": "@github/prettier-config",
"browserslist": "extends @github/browserslist-config"
}