-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.18 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
50
51
52
53
54
{
"name": "@uxuip/emitter",
"type": "module",
"version": "1.0.3",
"packageManager": "pnpm@9.6.0",
"description": "Simple event emitter/pubsub library. return `unbind` function.",
"author": "uxuip <uxuip@outlook.com>",
"license": "MIT",
"homepage": "https://github.com/uxuip/emitter",
"keywords": [
"EventEmitter",
"Events",
"emit",
"emitter",
"event",
"pub/sub",
"publish",
"reactor",
"subscribe"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"stub": "unbuild --stub",
"build": "unbuild",
"test": "vitest",
"prepare": "vitest --run && pnpm build",
"bump": "bumpp --no-push",
"release": "pnpm publish"
},
"devDependencies": {
"@uxuip/eslint-config": "^3.0.1",
"bumpp": "^9.5.2",
"eslint": "^9.10.0",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"vitest": "^2.1.1"
}
}