-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "tiny-node-eventemitter",
"version": "1.0.6",
"author": "DevMiner <[email protected]>",
"license": "MIT",
"description": "Tiny portable node:events compliant strictly-typed EventEmitter implementation",
"type": "module",
"repository": {
"url": "https://github.com/TheDevMinerTV/tiny-node-eventemitter",
"type": "git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"events",
"event-emitter",
"strict types"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"source": "src/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"packageManager": "[email protected]",
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --declaration --emitDeclarationOnly -p tsconfig.json && cp dist/index.d.ts dist/index.d.cts && cp dist/index.d.ts.map dist/index.d.dts.map",
"build:js": "rollup -c",
"build:docs": "typedoc --out docs src",
"test": "node test/index.js",
"release": "pnpm run build && pnpm run test && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@mxssfd/typedoc-theme": "^1.1.6",
"@types/node": "^20.14.9",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"typedoc": "^0.27.0",
"typescript": "^5.5.3"
},
"files": [
"dist",
"src"
]
}