-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "emojify-lyrics",
"version": "2.2.1",
"description": "Making the world a :slight_smile: place",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "Madeline Miller",
"type": "module",
"files": ["dist/", "README.md", "LICENSE"],
"scripts": {
"prepublish": "yarn generate && yarn build",
"generate": "node scripts/generateEmojiMap.js",
"build": "yarn tsc --project tsconfig.build.json",
"clean": "rm -rf dist/",
"test": "yarn vitest --run",
"lint": "yarn eslint src/ scripts/",
"lint:fix": "yarn eslint --fix src/ scripts/",
"postinstall": "yarn husky",
"precommit": "yarn lint-staged",
"prepack": "yarn pinst --disable",
"postpack": "yarn pinst --enable"
},
"devDependencies": {
"change-case": "^5.4.4",
"emoji-platform-data": "^0.2.0",
"emojilib": "^4.0.0",
"eslint": "^9.13.0",
"eslint-plugin-unicorn": "^56.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"unicode-emoji-json": "^0.8.0",
"vitest": "^2.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "yarn@4.5.0"
}