generated from beefchimi/template-common
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.09 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
{
"name": "emitten",
"version": "0.6.1",
"description": "Barebones TypeScript event emitter",
"author": "Curtis Dulmage",
"license": "ISC",
"keywords": [
"typescript",
"event",
"emitter"
],
"homepage": "https://github.com/beefchimi/emitten#readme",
"bugs": {
"url": "https://github.com/beefchimi/emitten/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beefchimi/emitten.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"type": "module",
"main": "./dist/emitten.umd.js",
"module": "./dist/emitten.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/emitten.es.js",
"require": "./dist/emitten.umd.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"scripts": {
"clean": "rm -rf coverage && rm -rf dist",
"nuke": "npm run clean && rm -rf node_modules && rm -rf package-lock.json && npm cache clean --force",
"build": "npm run clean && tsc && vite build",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --check src/",
"format:fix": "prettier --write src/",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --run --coverage",
"report": "changeset",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
}
}