-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "shared-core",
"version": "1.0.0-alpha.10",
"description": "High-performance, thread-safe data structures for JavaScript and TypeScript, powered by SharedArrayBuffer. Zero-copy, zero-hassle, shared memory at your core.",
"main": "dist/shared-core.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "rm -rf dist && tsc && npx vite build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pverscha/SharedCore.git"
},
"keywords": [
"Map"
],
"author": "Pieter Verschaffelt",
"license": "MIT",
"bugs": {
"url": "https://github.com/pverscha/SharedCore/issues"
},
"homepage": "https://github.com/pverscha/SharedCore#readme",
"dependencies": {
"fnv-plus": "^1.3.1"
},
"devDependencies": {
"@types/fnv-plus": "^1.3.2",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.3"
}
}