-
Notifications
You must be signed in to change notification settings - Fork 842
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.96 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
{
"name": "@primer/octicons-react",
"version": "19.32.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"
},
"./*": {
"types": "./dist/icons/*.d.ts",
"import": "./dist/icons/*.mjs"
}
},
"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",
"ts-test": "tsc -P ts-tests",
"lint:npm": "publint --strict"
},
"files": [
"dist"
],
"keywords": [
"GitHub",
"icons",
"svg",
"octicons",
"react",
"primer"
],
"devDependencies": {
"@babel/core": "7.29.6",
"@babel/generator": "^7.22.0",
"@babel/preset-env": "^7.22.0",
"@babel/preset-react": "^7.22.0",
"@babel/types": "^7.22.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": "^13.4.0",
"@types/react": "^18.2.0",
"fs-extra": "^6.0.1",
"next": "^16.1.5",
"publint": "0.2.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "3.0.2",
"rollup": "^2.79.0",
"styled-components": "^4.2.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"react": ">=16.3"
},
"engines": {
"node": ">=8"
},
"overrides": {
"fflate": "0.8.2"
}
}