forked from ef4/decorator-transforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "decorator-transforms",
"version": "2.2.2",
"description": "Better babel transforms for decorators",
"keywords": [],
"repository": {
"type": "git",
"url": "git@github.com:ef4/decorator-transforms.git"
},
"license": "MIT",
"author": "Edward Faulkner <edward@eaf4.com>",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./runtime": {
"import": "./dist/runtime.js",
"require": "./dist/runtime.cjs"
},
"./runtime-esm": "./dist/runtime.js",
"./runtime-cjs": "./dist/runtime.cjs",
"./globals": {
"import": "./dist/globals.js",
"require": "./dist/globals.cjs"
}
},
"files": [
"dist/*"
],
"scripts": {
"build": "tsup --dts",
"lint": "tsc",
"start": "tsup --dts --watch",
"test": "node --experimental-vm-modules node_modules/qunit/bin/qunit.js --require @swc-node/register tests/*-test.ts",
"typecheck": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"@babel/plugin-syntax-decorators": "^7.23.3",
"babel-import-util": "^3.0.0"
},
"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",
"@embroider/shared-internals": "^2.5.1",
"@babel/preset-env": "^7.24.4",
"@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",
"release-plan": "^0.9.0",
"tsup": "^7.3.0",
"typescript": "^5.4.5"
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
}
}