-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.52 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@js-ak/remote-objects",
"version": "1.2.1",
"description": "Actor-style remote objects on Node.js worker threads - write normal classes, call them like local instances.",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/types/index.d.ts",
"exports": {
".": {
"types": "./build/types/index.d.ts",
"require": "./build/cjs/index.js",
"import": "./build/esm/index.js",
"default": "./build/esm/index.js"
},
"./cjs": {
"require": "./build/cjs/index.js"
},
"./esm": {
"import": "./build/esm/index.js"
}
},
"files": [
"build/esm/lib",
"build/esm/index.js",
"build/esm/package.json",
"build/cjs/lib",
"build/cjs/index.js",
"build/cjs/package.json",
"build/types/lib",
"build/types/index.d.ts",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"lint": "eslint .",
"postbuild:esm": "node scripts/write-esm-package.js",
"postbuild:cjs": "node scripts/write-cjs-package.js && node scripts/fix-cjs-import-meta.js",
"test": "npm run build && npm run test:unit && node --test src/test/cjs-require.test.js",
"test:unit": "vitest run --config vitest.unit.config.js",
"test:coverage": "npm run build && vitest run --config vitest.unit.config.js --coverage",
"bench": "npm run build && node build/esm/examples/bench.js",
"example:counter": "npm run build && node build/esm/examples/counter.js",
"example:return-this": "npm run build && node build/esm/examples/return-this.js",
"example:db": "npm run build && node build/esm/examples/db.js",
"example:fn": "npm run build && node build/esm/examples/fn.js",
"example:callbacks": "npm run build && node build/esm/examples/callbacks.js",
"example:streams": "npm run build && node build/esm/examples/streams.js",
"example:cjs": "npm run build && node src/examples/cjs/counter.cjs"
},
"engines": {
"node": ">=20.19.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JS-AK/remote-objects.git"
},
"keywords": [
"actors",
"actor-model",
"worker-threads",
"nodejs",
"typescript",
"concurrency",
"parallel",
"proxy",
"remote-objects",
"multithreading",
"rpc"
],
"author": {
"name": "JS-AK",
"url": "https://github.com/JS-AK"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JS-AK/remote-objects/issues"
},
"homepage": "https://js-ak.github.io/remote-objects",
"devDependencies": {
"@eslint/compat": "2.1.0",
"@js-ak/db-manager": "3.50.1",
"@semantic-release/changelog": "7.0.0",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "11.0.1",
"@semantic-release/github": "12.0.9",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.1",
"@stylistic/eslint-plugin": "5.10.0",
"@types/node": "26.1.1",
"@typescript/native": "npm:typescript@7.0.2",
"@vitest/coverage-v8": "4.1.10",
"eslint": "10.8.0",
"eslint-plugin-sort-destructure-keys": "3.0.0",
"eslint-plugin-sort-exports": "0.9.1",
"globals": "17.7.0",
"semantic-release": "25.0.8",
"typescript": "npm:@typescript/typescript6@6.0.2",
"typescript-eslint": "8.65.0",
"vitest": "4.1.10"
}
}