-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 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
{
"name": "@daneren2005/shared-memory-objects",
"version": "0.0.21",
"author": "daneren2005@gmail.com",
"description": "Creating objects with a SharedArrayBuffer",
"homepage": "https://github.com/daneren2005/shared-memory-objects#readme",
"keywords": [
"sharedarraybuffer"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/daneren2005/shared-memory-objects.git"
},
"bugs": {
"url": "https://github.com/daneren2005/shared-memory-objects/issues"
},
"type": "module",
"files": [
"dist/"
],
"main": "./dist/shared-memory-objects.js",
"exports": {
".": {
"import": {
"types": "./dist/src/main.d.ts",
"default": "./dist/shared-memory-objects.js"
},
"require": {
"types": "./dist/src/main.d.ts",
"default": "./dist/shared-memory-objects.js"
}
}
},
"types": "./dist/src/main.d.ts",
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "eslint",
"lint:fix": "eslint --fix",
"preview": "vite preview",
"publish": "npm publish --access public",
"start": "npm run dev",
"test:bench": "vitest bench",
"test:ui": "vitest --ui --api 9527",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"type-check": "tsc --build --force",
"prepare": "husky"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.53.2",
"@tsconfig/node24": "^24.0.1",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.9.1",
"@vitest/coverage-v8": "^4.0.1",
"@vitest/eslint-plugin": "^1.3.23",
"@vitest/ui": "^4.0.1",
"eslint": "^9.38.0",
"husky": "^9.1.7",
"jsdom": "^27.0.1",
"lint-staged": "^16.2.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"unplugin-dts": "^1.0.0-beta.6",
"vite": "^7.1.11",
"vitest": "^4.0.1"
},
"dependencies": {
"pretty-bytes": "^7.1.0"
}
}