-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
68
69
70
71
72
{
"name": "decorator-transforms",
"version": "2.3.0",
"description": "Better babel transforms for decorators",
"keywords": [],
"repository": {
"type": "git",
"url": "[email protected]:ef4/decorator-transforms.git"
},
"license": "MIT",
"author": "Edward Faulkner <[email protected]>",
"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"
}
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"files": [
"dist/*"
],
"scripts": {
"build": "vite build",
"dev:browser": "vite",
"lint": "tsc && prettier --check .",
"lint:fix": "prettier --write .",
"prepare": "npm run build",
"start": "vite build --watch",
"test": "TS_NODE_PROJECT=./tsconfig.test.json node --experimental-vm-modules node_modules/qunit/bin/qunit.js --require @swc-node/register tests/*-test.ts",
"typecheck": "tsc"
},
"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",
"@babel/preset-env": "^7.24.4",
"@embroider/shared-internals": "^2.5.1",
"@swc-node/register": "^1.6.8",
"@types/babel__core": "^7.20.4",
"@types/node": "^20.9.1",
"@types/qunit": "^2.19.8",
"prettier": "^3.3.3",
"qunit": "^2.20.0",
"release-plan": "^0.9.0",
"typescript": "^5.4.5",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0"
},
"packageManager": "[email protected]"
}