-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "@matrix-org/emojibase-bindings",
"version": "1.3.3",
"description": "Kotlin, Swift and Typescript bindings for emojibase json.",
"main": "build/emoji.js",
"repository": "https://github.com/matrix-org/emojibase-bindings.git",
"author": "matrix.org",
"license": "Apache-2.0",
"files": [
"LICENSE",
"README.md",
"package.json",
"src",
"build"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"start": "ts-node ./src/build.ts",
"prepare": "yarn build && yarn start",
"lint": "eslint .",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.13",
"@types/node": "^20.4.7",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"babel-jest": "^29.7.0",
"eslint": "8.57.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-matrix-org": "^1.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^55.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"emojibase": "^15.3.1",
"emojibase-data": "^15.3.1"
}
}