-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.83 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
{
"name": "@uocazizah/blazing-node",
"version": "1.0.0",
"description": "A lightweight, general-purpose npm package for enterprise users",
"type": "module",
"author": "Uoc Azizah",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ustdb/blazing-node.git"
},
"homepage": "https://github.com/ustdb/blazing-node#readme",
"bugs": {
"url": "https://github.com/ustdb/blazing-node/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=18"
},
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./io": {
"import": {
"types": "./dist/esm/io/index.d.ts",
"default": "./dist/esm/io/index.js"
},
"require": {
"types": "./dist/cjs/io/index.d.ts",
"default": "./dist/cjs/io/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run clean && npm run build:native && npm run build:cjs && npm run build:esm",
"clean": "rm -drf dist build",
"build:native": "node scripts/native_build.mjs",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"check": "biome check . && tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^2.5.10",
"@types/node": "^26.2.0",
"cmake-js": "^8.0.0",
"node-addon-api": "^8.9.2",
"node-gyp": "^13.0.1",
"typescript": "^7.0.2"
}
}