-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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": "emojify-lyrics",
"version": "2.3.0",
"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.1",
"eslint": "^9.17.0",
"eslint-plugin-unicorn": "^56.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"pinst": "^3.0.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"unicode-emoji-json": "^0.8.0",
"vitest": "^2.1.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "[email protected]"
}