-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "create-pubsub",
"version": "1.6.3",
"description": "A tiny Event Emitter and Observable Store.",
"files": [
"main",
"react",
"immer"
],
"types": "./main/index.d.ts",
"main": "./main/index.js",
"module": "./main/index.mjs",
"exports": {
".": {
"types": "./main/index.d.ts",
"import": "./main/index.mjs",
"require": "./main/index.js"
},
"./react": {
"types": "./react/index.d.ts",
"import": "./react/index.mjs",
"require": "./react/index.js"
},
"./immer": {
"types": "./immer/index.d.ts",
"import": "./immer/index.mjs",
"require": "./immer/index.js"
}
},
"sideEffects": false,
"scripts": {
"build": "del main react immer && rollup -c --configPlugin typescript",
"test": "node -r @esbuild-kit/cjs-loader -r global-jsdom/register --test test/**/*.ts test/**/*.tsx",
"test-watch": "watchlist test -- npm test",
"prepare": "package-check && npm run build",
"preview-package-contents": "npm pack --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felladrin/create-pubsub.git"
},
"keywords": [
"event",
"events",
"dispatcher",
"emitter",
"listener",
"listeners",
"event-emitter",
"subscribe",
"state",
"state-management"
],
"author": {
"name": "Victor Nogueira",
"email": "[email protected]",
"url": "https://victornogueira.app"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/felladrin/create-pubsub/issues"
},
"homepage": "https://github.com/felladrin/create-pubsub#readme",
"devDependencies": {
"@esbuild-kit/cjs-loader": "2.4.4",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@skypack/package-check": "0.2.2",
"@testing-library/dom": "^10.1.0",
"@testing-library/react": "16.1.0",
"@types/node": "22.10.5",
"@types/react": "19.0.2",
"del-cli": "6.0.0",
"global-jsdom": "25.0.0",
"immer": "10.1.1",
"jsdom": "25.0.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"rollup": "4.29.1",
"rollup-plugin-dts": "6.1.1",
"tslib": "2.8.1",
"typescript": "5.7.2",
"watchlist": "0.3.1"
}
}