This repository was archived by the owner on Dec 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.84 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.84 KB
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
{
"name": "@nr1e/commons",
"description": "Common utilities for TypeScript projects",
"version": "0.2.0",
"type": "module",
"author": "NR1E, Inc.",
"publishConfig": {
"access": "public"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/nr1etech/commons-js.git"
},
"bugs": {
"url": "https://github.com/nr1etech/commons-js/issues"
},
"homepage": "https://github.com/nr1etech/commons-js#readme",
"files": [
"**"
],
"scripts": {
"prebuild": "prettier --check . && eslint .",
"build": "tsc",
"postbuild": "cp package.json README.md dist",
"watch": "tsc -w",
"test": "vitest run --coverage",
"clean": "rm -rf dist && rm -rf site && rm -rf coverage",
"fmt": "prettier --write .",
"site": "typedoc --out site \"src/**/*.mts\" --exclude \"src/**/*.test.*\""
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"typedoc": "^0.27.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vitest": "^2.1.8"
},
"dependencies": {
"tslib": "^2.8.1"
},
"exports": {
"./bitsnbytes": {
"import": "./bitsnbytes/index.mjs",
"types": "./bitsnbytes/index.d.mts"
},
"./errors": {
"import": "./errors/index.mjs",
"types": "./errors/index.d.mts"
},
"./http": {
"import": "./http/index.mjs",
"types": "./http/index.d.mts"
},
"./lang": {
"import": "./lang/index.mjs",
"types": "./lang/index.d.mts"
},
"./oauth": {
"import": "./oauth/index.mjs",
"types": "./oauth/index.d.mts"
},
"./package.json": "./package.json",
"./validator": {
"import": "./validator/index.mjs",
"types": "./validator/index.d.mts"
}
}
}