forked from primer/view_components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.36 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
{
"name": "@primer/view-components",
"version": "0.0.90",
"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": [
"app/components/primer/**/*.js",
"app/components/primer/**/*.d.ts"
],
"scripts": {
"build:docs": "cd docs && yarn gatsby build --prefix-paths",
"build:docs:preview": "cd docs && yarn gatsby build",
"prepare": "rm -rf docs/static && mkdir -p docs/static && tsc && rollup -c && cp app/assets/javascripts/primer_view_components.js docs/static/primer_view_components.js",
"lint": "eslint 'app/components/**/*.ts' demo/.storybook",
"lint:fix": "eslint 'app/components/**/*.ts' demo/.storybook --fix",
"changeset:version": "changeset version && script/version",
"build:js": "tsc && rollup -c"
},
"dependencies": {
"@github/auto-complete-element": "^3.3.4",
"@github/clipboard-copy-element": "^1.1.2",
"@github/details-menu-element": "^1.0.12",
"@github/image-crop-element": "^5.0.0",
"@github/tab-container-element": "^3.1.2",
"@github/time-elements": "^3.1.2",
"@primer/behaviors": "^1.1.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.1",
"@github/prettier-config": "0.0.4",
"@primer/css": "^20.3.0",
"@primer/primitives": "^7.9.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-plugin-custom-elements": "^0.0.6",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"rollup": "^2.77.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"prettier": "@github/prettier-config",
"storybook": {
"url": "https://primer.style/view-components/stories/"
}
}