-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 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
{
"name": "@monitext/ndata",
"version": "0.0.0",
"description": "Utility helpers for working with typed result objects and primitive data structures (Result, PrimitiveStruct, and helpers). Zero-dependency, TypeScript-first.",
"type": "module",
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.cjs",
"default": "./dist/main.js"
},
"./dist/*": "./dist/*",
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"files": [
"src",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"format": "pnpm prettier --write './**/*.{js,ts,json,md}'",
"typecheck": "pnpm tsc --noEmit -p ./tsconfig.build.json",
"bundle": "pnpm tsx build.ts",
"test": "pnpm vitest run",
"build": "pnpm run typecheck && pnpm run test && pnpm run format && pnpm run bundle"
},
"repository": {
"type": "git",
"url": "https://github.com/Ctlinker/Monitext.js.git",
"directory": "packages/modules/ndata"
},
"keywords": [
"monitext",
"ndata",
"result",
"result-type",
"typescript",
"utility",
"primitive",
"struct",
"error-handling"
],
"author": "Ctlinker <linkeris404@gmail.com>",
"license": "Apache-2.0",
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^24.10.0",
"tsx": "4.20.5",
"vitest": "3.1.2",
"prettier": "^3.6.2"
},
"dependencies": {}
}