-
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.95 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.95 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": "@cloudpss/mmap",
"version": "0.0.12",
"description": "mmap n-api addon for node.js",
"author": "OpportunityLiu <opportunity@live.in>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CloudPSS/mmap.git"
},
"keywords": [
"mmap",
"n-api",
"addon",
"esm"
],
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=14.16"
},
"os": [
"linux",
"darwin",
"win32"
],
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"install": "node-gyp-build",
"clean": "rimraf dist",
"clean:gyp": "rimraf build prebuilds",
"build": "pnpm clean && tsc",
"build:gyp": "prebuildify --napi --strip",
"build:gyp-cross": "prebuildify-cross --napi --strip",
"watch": "pnpm clean && tsc --watch",
"test": "NODE_OPTIONS=\"${NODE_OPTIONS:-} --experimental-vm-modules\" jest",
"prepare": "husky || echo Failed to initialize husky",
"format": "prettier --cache --cache-strategy content --ignore-path .gitignore --write .",
"lint": "eslint --cache --cache-location node_modules/.cache/eslint/ --cache-strategy content --ext .js,.ts ."
},
"prettier": "@cloudpss/prettier-config",
"commitlint": {
"extends": "@cloudpss"
},
"devDependencies": {
"@cloudpss/commitlint-config": "^3.0.36",
"@cloudpss/eslint-config": "^3.0.36",
"@cloudpss/lint-staged-config": "^3.0.36",
"@cloudpss/prettier-config": "^3.0.36",
"@cloudpss/tsconfig": "^3.0.36",
"@jest/globals": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.8",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prebuildify": "^6.0.1",
"prebuildify-cross": "^5.1.1",
"rimraf": "^6.1.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"dependencies": {
"node-addon-api": "^8.5.0",
"node-gyp-build": "^4.8.4"
}
}