-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.13 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
81
{
"name": "@pierre/icons",
"version": "0.7.1",
"type": "module",
"description": "The Pierre Computer Company Icon Library",
"license": "Apache-2.0",
"author": "Pierre Computer Company <support@pierre.co>",
"homepage": "https://github.com/pierrecomputer/icons#readme",
"bugs": {
"url": "https://github.com/pierrecomputer/icons/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pierrecomputer/icons.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
}
},
"sideEffects": false,
"files": [
"dist",
"svg",
"LICENSE",
"README"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run icons:build && npm run tsc",
"icons:build": "npx tsx scripts/build-icons.ts",
"icons:sprite": "npx tsx scripts/build-sprite.ts",
"icons:preview": "npx tsx scripts/build-preview.ts",
"icons": "npm run icons:build && npm run icons:sprite && npm run icons:preview",
"tsc": "tsc",
"clean": "rm -rf dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run lint && npm run format:check",
"prepare": "git config core.hooksPath .githooks",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/types": "^7.29.0",
"@eslint/js": "^9.39.0",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/node": "^25.0.0",
"@types/react": "^19.0.0",
"eslint": "^9.39.0",
"eslint-plugin-react-hooks": "^7.0.0",
"prettier": "^3.8.0",
"svgo": "^4.0.0",
"tsx": "^4.22.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.59.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"keywords": [
"icons",
"react",
"svg",
"components",
"pierre"
]
}