-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "@devalade/reflection",
"version": "2.0.0",
"description": "Ergonomic runtime introspection for JavaScript classes and objects — members, descriptors, and optional decorator metadata.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/devalade/reflection-class.git"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.lib.json && node scripts/fix-dts-extensions.mjs",
"typecheck": "tsc -p tsconfig.lib.json --noEmit",
"test": "node --experimental-strip-types --disable-warning=ExperimentalWarning --test './src/**/*.test.ts'"
},
"keywords": [
"reflection",
"typescript",
"javascript",
"introspection",
"class",
"object",
"metadata",
"decorators"
],
"author": "devalade",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^22.10.1",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.14.4",
"files": [
"dist",
"README.md",
"LICENSE"
]
}