-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "@cohesic/react-icons",
"version": "1.3.3",
"description": "React icons for the Cohesic suite of products.",
"license": "MIT",
"workspaces": [
"site"
],
"keywords": [
"react",
"icon",
"cohesic"
],
"author": {
"name": "Paul Coyle",
"email": "paul.coyle@cohesic.com",
"url": "https://cohesic.com"
},
"bugs": {
"url": "https://github.com/cohesic/react-icons/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cohesic/react-icons.git"
},
"type": "module",
"scripts": {
"build": "npm run build:library && npm run build:site",
"build:library": "rimraf ./dist && ts-node ./scripts/build/main.ts",
"build:site": "npm run build --prefix site && npm run export --prefix site",
"figma": "ts-node ./scripts/figma/main.ts"
},
"devDependencies": {
"@tsconfig/node16": "1.0.3",
"@types/cheerio": "0.22.31",
"@types/glob": "8.0.0",
"@types/react": "18.0.21",
"@types/svgo": "2.6.4",
"camelcase": "7.0.0",
"cheerio": "1.0.0-rc.12",
"glob": "8.0.3",
"react": "18.2.0",
"rimraf": "3.0.2",
"svgo": "2.8.0",
"ts-node": "10.9.1",
"tsup": "6.2.3",
"typescript": "4.8.4"
},
"peerDependencies": {
"react": "*"
}
}