-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 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
{
"name": "@wordpress/icons",
"version": "10.32.0",
"description": "WordPress Icons package, based on dashicon.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"gutenberg",
"icons",
"dashicon"
],
"homepage": "https://github.com/WordPress/gutenberg/tree/HEAD/packages/icons/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/WordPress/gutenberg.git",
"directory": "packages/icons"
},
"bugs": {
"url": "https://github.com/WordPress/gutenberg/issues"
},
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.2"
},
"main": "build/index.js",
"module": "build-module/index.js",
"exports": {
".": {
"types": "./build-types/index.d.ts",
"import": "./build-module/index.js",
"require": "./build/index.js"
},
"./package.json": "./package.json"
},
"react-native": "src/index",
"types": "build-types",
"sideEffects": false,
"dependencies": {
"@wordpress/element": "file:../element",
"@wordpress/primitives": "file:../primitives"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prelint": "npm run build",
"prepare": "npm run build",
"build": "node lib/generate-library"
}
}