-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 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
{
"name": "remitter",
"version": "0.4.6",
"private": false,
"description": "A TypeScript friendly event emitter with easy re-emitting events.",
"license": "MIT",
"author": "CRIMX <[email protected]> (https://github.com/crimx/)",
"repository": "crimx/remitter",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write .",
"ts-check": "tsc --noEmit",
"docs": "typedoc --options typedoc.json",
"test": "vitest",
"test:coverage": "vitest --coverage --coverage.include=src/**",
"test:ci": "tsc --noEmit && vitest --coverage --coverage.reporter=lcov --coverage.include=src/**",
"build": "tsup",
"build:min": "MINIFY=true tsup && echo '' && gzip-size dist/index.mjs dist/index.js",
"release": "commit-and-tag-version"
},
"dependencies": {
"@wopjs/disposable": "<=1",
"adaptive-set": "<=0"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.0.5",
"@wopjs/eslint-config": "^0.1.9",
"@wopjs/gzip-size": "^0.1.0",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typedoc": "^0.27.2",
"typescript": "^5.5.4",
"vitest": "^3.0.4"
}
}