forked from ef4/decorator-transforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 KB
/
package.json
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
{
"name": "decorator-transforms",
"version": "1.1.0",
"description": "Better babel transforms for decorators",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./runtime": {
"import": "./dist/runtime.js",
"require": "./dist/runtime.cjs"
},
"./globals": {
"import": "./dist/globals.js",
"require": "./dist/globals.cjs"
}
},
"files": [
"dist/*"
],
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"lint": "tsc",
"test": "node --experimental-vm-modules node_modules/qunit/bin/qunit.js --require @swc-node/register tests/*-test.ts",
"typecheck": "tsc"
},
"keywords": [],
"author": "Edward Faulkner <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-decorators": "^7.23.3",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-private-methods": "^7.23.3",
"@swc-node/register": "^1.6.8",
"@types/babel__core": "^7.20.4",
"@types/node": "^20.9.1",
"@types/qunit": "^2.19.8",
"qunit": "^2.20.0",
"tsup": "^7.3.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@babel/plugin-syntax-decorators": "^7.23.3",
"babel-import-util": "^2.0.1"
}
}