-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.41 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
{
"name": "utilium",
"version": "1.1.3",
"description": "Typescript utilities",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/james-pre"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*",
"./eslint": "./eslint.shared.js",
"./source": "./src/*"
},
"files": [
"src",
"dist",
"tsconfig.json",
"scripts"
],
"scripts": {
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "tsc --noEmit && eslint src",
"test": "tsx --test",
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/james-pre/utilium.git"
},
"author": "James Prevett <[email protected]> (https://jamespre.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/james-pre/utilium/issues"
},
"homepage": "https://github.com/james-pre/utilium#readme",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.12.7",
"eslint": "^9.12.0",
"globals": "^15.10.0",
"prettier": "^3.2.5",
"tsx": "^4.19.1",
"typedoc": "^0.26.6",
"typescript": "^5.5.4",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"eventemitter3": "^5.0.1"
},
"optionalDependencies": {
"@xterm/xterm": "^5.5.0"
}
}