-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "mixedin",
"version": "0.5.0",
"description": "A lightweight TypeScript mixin feature with instanceof support and order-insensitive caching.",
"keywords": [
"mixin",
"typescript",
"class",
"inheritance",
"instanceof",
"decorators",
"cache",
"composition"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"files": [
"build",
"LICENSE"
],
"sideEffects": false,
"author": "FrameMuse",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FrameMuse/class-mixin-instance"
},
"scripts": {
"build": "vite build && bun build:types",
"build:types": "tsup src/index.ts --out-dir build --format esm --dts-only --tsconfig tsconfig.build.json",
"bench": "bun run ./src/mixin.benchmark.mitata.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/sinon": "^21.0.0",
"class-validator": "^0.15.1",
"mitata": "^1.0.34",
"mixwith": "^0.1.1",
"reflect-metadata": "^0.2.2",
"sinon": "^21.0.2",
"ts-mixer": "^6.0.4",
"tsdown": "^0.21.0",
"typescript": "^5",
"vite": "^8.0.0",
"vite-plugin-externalize-deps": "^0.10.0"
}
}