-
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.27 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.27 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": "swc-class-decorator-plugin",
"version": "1.1.0",
"description": "SWC plugin for class decorators used by plume-ts-di npm lib",
"author": "Aurélien Manteaux <amanteaux@coreoz.com> (https://coreoz.com)",
"contributors": [
"Malo Le Corvec <mlecorvec@coreoz.com> (https://coreoz.com)",
"Vincent Dubois <vdubois@coreoz.com> (https://coreoz.com)"
],
"repository": "https://github.com/Coreoz/SWC-class-decorator-plugin.git",
"homepage": "https://github.com/Coreoz/SWC-class-decorator-plugin",
"license": "Apache-2.0",
"keywords": [
"swc-plugin",
"typescript",
"dependency injection",
"plume-ts-di"
],
"main": "target/wasm32-wasip1/release/swc_class_decorator_plugin.wasm",
"scripts": {
"build": "cargo build-wasi --release",
"clean": "rm -rf target",
"test": "cargo test --package swc_class_decorator_plugin --lib tests",
"release": "yarn clean && yarn build"
},
"devDependencies": {
"release-it": "^18.1.2"
},
"files": [
"src/*",
"transform/src/*"
],
"preferUnplugged": true,
"engines": {
"node": "20.18.3"
},
"release-it": {
"hooks": {
"before:init": [
"yarn release"
]
}
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.12.0"
}