-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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": "@colorfy-software/emittify",
"version": "1.0.2",
"description": "Tiny event library with caching",
"private": false,
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"clean:build": "rm -rf dist",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colorfy-software/emittify.git"
},
"peerDependencies": {
"react": "^18.2.0",
"solid-js": "^1.4.2"
},
"types": "dist/index.d.ts",
"files": [
"/dist",
"./mock.js"
],
"author": "Kristjan Vool",
"license": "MIT",
"bugs": {
"url": "https://github.com/colorfy-software/emittify/issues"
},
"homepage": "https://github.com/colorfy-software/emittify#readme",
"devDependencies": {
"@types/react": "^18.0.17",
"release-it": "^15.4.0",
"solid-js": "^1.4.8",
"typescript": "^4.7.4"
},
"release-it": {
"git": {
"commitMessage": "[COLIB] - CHORE - release emittify ${version}",
"tagName": "${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
}
}
}