-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 3.36 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "babel-preset-proposal-typescript",
"version": "4.0.0",
"type": "module",
"description": "Yet another Babel preset for TypeScript, only transforms proposals which TypeScript does not support now.",
"repository": "git+https://github.com/un-ts/babel-preset-proposal-typescript.git",
"author": "JounQin <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=6.9.0"
},
"main": "lib/index.cjs",
"module": "lib/index.js",
"exports": {
"types": "./lib/index.d.ts",
"es2015": "./lib/index.es2015.mjs",
"fesm2015": "./lib/index.es2015.mjs",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"es2015": "lib/index.es2015.mjs",
"fesm2015": "lib/index.es2015.mjs",
"types": "lib",
"files": [
"lib",
"!*.tsbuildinfo"
],
"keywords": [
"babel-preset",
"babel-preset-ts",
"babel-preset-typescript",
"@babel/preset-ts",
"@babel/preset-typescript",
"babel-typescript",
"typescript"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -f cjs,es2015",
"build:ts": "tsc -p src",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly",
"lint:tsc": "tsc -p src --noEmit",
"prepack": "clean-pkg-json",
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"prerelease": "yarn build",
"pretest": "yarn build",
"release": "changeset publish",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest"
},
"peerDependencies": {
"@babel/core": "^7.23.0",
"typescript": "^5.3.0"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/plugin-proposal-async-do-expressions": "^7.23.3",
"@babel/plugin-proposal-destructuring-private": "^7.23.3",
"@babel/plugin-proposal-do-expressions": "^7.23.3",
"@babel/plugin-proposal-duplicate-named-capturing-groups-regex": "^7.23.3",
"@babel/plugin-proposal-function-bind": "^7.23.3",
"@babel/plugin-proposal-function-sent": "^7.23.3",
"@babel/plugin-proposal-import-defer": "^7.23.0",
"@babel/plugin-proposal-import-wasm-source": "^7.23.0",
"@babel/plugin-proposal-optional-chaining-assign": "^7.23.0",
"@babel/plugin-proposal-partial-application": "^7.23.3",
"@babel/plugin-proposal-pipeline-operator": "^7.23.3",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-proposal-record-and-tuple": "^7.23.3",
"@babel/plugin-proposal-regexp-modifiers": "^7.23.3",
"@babel/plugin-proposal-throw-expressions": "^7.23.3",
"@babel/plugin-syntax-decorators": "^7.23.3",
"@babel/plugin-syntax-typescript": "^7.23.3",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@bloomberg/record-tuple-polyfill": "^0.0.4"
},
"devDependencies": {
"@1stg/lib-config": "^12.0.1",
"@babel/core": "^7.23.6",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@node-loader/babel": "^2.0.1",
"@types/babel__core": "^7.20.5",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.3",
"@vitest/coverage-istanbul": "^1.0.4",
"clean-pkg-json": "^1.2.0",
"core-dts": "^0.0.3",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"yarn-deduplicate": "^6.0.2"
},
"resolutions": {
"babel-preset-proposal-typescript": "link:.",
"prettier": "^2.8.8"
}
}