-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.47 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": "react-twemoji-components",
"version": "1.0.0-pre.1",
"description": "😃 Twemoji as individual React Components",
"repository": {
"type": "git",
"url": "https://github.com/blazingworks/react-twemoji-components.git"
},
"homepage": "https://blazing.works",
"author": "BlazingWorks <developers@blazing.works>",
"license": "MIT",
"keywords": [
"react",
"emoji",
"twemoji",
"components",
"jsx",
"tsx",
"blazingworks"
],
"packageManager": "pnpm@7.26.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"LICENSE-GRAPHICS",
"README.md",
".github/blazingworks_opensource.svg"
],
"scripts": {
"build:updateData": "./scripts/updateData.sh",
"build:updateEmoji": "./scripts/updateEmoji.sh",
"build:renameFiles": "node scripts/renameFiles.js",
"build:createComponents": "svgr --out-dir src --ignore-existing --typescript svg",
"build:final": "tsc",
"build": "npm run build:updateData && npm run build:updateEmoji && npm run build:renameFiles && npm run build:createComponents && npm run build:final",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@svgr/cli": "^6.5.1",
"@types/react": "^18.0.28",
"csv-parse": "^5.3.5",
"semantic-release": "^20.1.0",
"semantic-release-license": "^1.0.3",
"typescript": "^4.9.5"
},
"dependencies": {
"react": "^18.2.0"
}
}