-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
51
52
53
54
55
56
57
{
"name": "babel-plugin-jsx-asset-url-import",
"version": "2.0.0",
"description": "Extract and transform static url to import in JSX",
"repository": "github:suiyun39/babel-plugin-jsx-asset-url-import",
"license": "MIT",
"keywords": [
"babel",
"babel-plugin",
"jsx"
],
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc && tsup",
"lint": "eslint .",
"test": "jest",
"prepare": "husky"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"dependencies": {
"srcset-parse": "^1.1.0"
},
"peerDependencies": {
"@babel/core": "^7.24.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/babel__core": "^7.20.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.26",
"@types/react": "^18.2.65",
"babel-plugin-tester": "^11.0.4",
"eslint": "^8.57.0",
"eslint-config-rakko": "^1.1.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
}
}