-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.27 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
{
"name": "zohar",
"version": "1.0.1",
"description": "A functional type-safe event emitter library with zero dependencies",
"keywords": [
"events",
"typescript",
"event emitter",
"javascript"
],
"homepage": "https://github.com/Constantiner/zohar#readme",
"bugs": {
"url": "https://github.com/Constantiner/zohar/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Constantiner/zohar.git"
},
"license": "MIT",
"author": {
"name": "Konstantin Kovalev",
"email": "constantiner@gmail.com"
},
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "npx tsup",
"check-exports": "attw --pack .",
"ci": "npm run lint & npm run test:coverage & npm run build && npm run check-exports",
"format": "npx prettier --write '**/*.{js,cjs,mjs,ts,jsx,tsx,css,scss,json,htm,html,yml,lintstagedrc,stylelintrc}'",
"lint": "npx tsc --noEmit && npm run lint:only",
"lint-staged": "npx lint-staged",
"lint:config-inspector": "npx @eslint/config-inspector",
"lint:only": "npx eslint . --report-unused-disable-directives --max-warnings 0",
"local-release": "npx changeset version && npx changeset publish",
"prepare": "npx husky",
"prepublishOnly": "npm run ci",
"test": "npx jest",
"test:coverage": "npx jest --coverage",
"test:watch": "npx jest --watch"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@changesets/cli": "^2.27.7",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@stylistic/eslint-plugin-js": "^2.6.4",
"@types/jest": "^29.5.12",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}