-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 803 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 803 Bytes
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
{
"name": "emoji-api",
"version": "3.0.1",
"description": "Simple Emoji API",
"main": "build/index.js",
"module": "build/index.mjs",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "tsup",
"test": "npm run build && cd test && node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Archaeopteryx1/emoji-api.git"
},
"keywords": [
"emoji",
"emoji-api",
"parser",
"emoji-parser"
],
"author": "Archaeopteryx1",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Archaeopteryx1/emoji-api/issues"
},
"homepage": "https://github.com/Archaeopteryx1/emoji-api#readme",
"devDependencies": {
"@types/node": "^18.7.23",
"tsup": "^6.2.3",
"typescript": "^4.4.3"
}
}