-
Notifications
You must be signed in to change notification settings - Fork 828
/
package.json
80 lines (80 loc) · 2.08 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
{
"name": "@primer/octicons-react",
"version": "19.14.0",
"description": "A scalable set of icons handcrafted with <3 by GitHub.",
"homepage": "https://primer.style/octicons",
"author": "GitHub, Inc.",
"license": "MIT",
"type": "commonjs",
"main": "dist/index.umd.js",
"module": "dist/index.esm.mjs",
"exports": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.ts"
},
"import": "./dist/index.esm.mjs",
"require": "./dist/index.umd.js"
},
"sideEffects": false,
"types": "dist/index.d.ts",
"repository": "primer/octicons",
"scripts": {
"build": "script/build.js && script/types.js && rollup -c",
"clean": "rimraf .next dist src/__generated__",
"develop": "next",
"lint": "eslint src pages script",
"test": "jest",
"ts-test": "tsc -P ts-tests",
"posttest": "yarn ts-test"
},
"files": [
"dist"
],
"keywords": [
"GitHub",
"icons",
"svg",
"octicons",
"react",
"primer"
],
"devDependencies": {
"@babel/core": "7.19.1",
"@babel/generator": "7.19.0",
"@babel/preset-env": "7.19.1",
"@babel/preset-react": "7.18.6",
"@babel/types": "7.19.0",
"@github/prettier-config": "0.0.4",
"@primer/components": "27.0.0",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "14.1.0",
"@rollup/plugin-virtual": "2.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@types/react": "^18.0.20",
"babel-jest": "29.0.3",
"eslint": "^6.5.1",
"eslint-plugin-github": "4.1.3",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"fs-extra": "^6.0.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "29.0.3",
"next": "^12.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "3.0.2",
"rollup": "^2.79.0",
"styled-components": "^4.2.0",
"typescript": "^4.8.3"
},
"peerDependencies": {
"react": ">=16.3"
},
"engines": {
"node": ">=8"
}
}