-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.16 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.16 KB
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": "@modern-js/image",
"version": "2.69.6",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.js",
"require": "./dist/runtime.cjs"
},
"./types": {
"types": "./dist/types.d.ts"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"runtime": [
"./dist/runtime.d.ts"
],
"types": [
"./dist/types.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch"
},
"dependencies": {
"@rsbuild-image/core": "0.0.1-next.36",
"@rsbuild-image/react": "0.0.1-next.16",
"ipx": "^3.0.3",
"sharp": "^0.34.1"
},
"devDependencies": {
"@modern-js/app-tools": "workspace:*",
"@rslib/core": "^0.6.8",
"@types/node": "^16",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5"
}
}