-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "convert-gitmoji",
"version": "0.1.5",
"repository": "Intevel/convert-gitmoji",
"description": "♻️ Convert strings to gitmojis",
"license": "MIT",
"author": "Conner Luka Bachmann <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"lint": "eslint --ext .ts .",
"release": "yarn build && changelogen --release && git push --follow-tags && yarn publish",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"changelogen": "^0.3.5",
"eslint": "^8.12.0",
"typescript": "^4.6.3",
"unbuild": "^0.7.4",
"vitest": "^0.17.0"
}
}