-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 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
{
"name": "babel-plugin-typescript-to-proptypes",
"version": "2.1.0",
"description": "Generate React PropTypes from TypeScript prop interfaces.",
"repository": "https://github.com/milesj/babel-plugin-typescript-to-proptypes",
"license": "MIT",
"main": "./lib/index.js",
"types": "./dts/index.d.ts",
"author": "Miles Johnson",
"keywords": [
"babel-plugin",
"typescript",
"interfaces",
"prop-types",
"react"
],
"scripts": {
"build": "packemon build --addEngines",
"pack": "NODE_ENV=production packemon pack --addEngines --declaration=standard --declarationConfig tsconfig.build.json",
"coverage": "yarn run test --coverage",
"check": "yarn run type && yarn run test && yarn run lint",
"lint": "beemo eslint",
"test": "beemo jest",
"format": "beemo prettier",
"release": "yarn run pack && yarn run check && npx np --yolo --no-yarn",
"type": "beemo typescript --noEmit"
},
"engines": {
"node": ">=12.17.0",
"npm": ">=6.13.0"
},
"files": [
"dts/**/*.d.ts",
"lib/**/*.{js,map}",
"src/**/*.{ts,tsx,json}"
],
"peerDependencies": {
"@babel/core": "^7.0.0",
"typescript": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"@babel/helper-module-imports": "^7.15.4",
"@babel/plugin-syntax-typescript": "^7.14.5",
"@babel/types": "^7.15.6"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@beemo/cli": "^2.0.3",
"@beemo/core": "^2.1.1",
"@beemo/dev": "^1.6.3",
"@types/babel__traverse": "^7.14.2",
"@types/node": "^14.17.27",
"@types/prop-types": "^15.7.4",
"@types/react": "^16.14.17",
"conventional-changelog-beemo": "^2.1.0",
"fast-glob": "^3.2.7",
"packemon": "^1.6.0",
"prop-types": "^15.7.2",
"typescript": "^5.0.0"
},
"packageManager": "yarn@3.0.2",
"packemon": {
"format": "lib",
"platform": "node"
}
}