-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.09 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
{
"name": "@univerjs/webpack-plugin",
"version": "0.5.1",
"private": false,
"description": "Webpack plugin for easily integrating Univer",
"author": "DreamNum <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"univer",
"univerjs",
"webpack",
"webpack plugin"
],
"exports": {
".": "./lib/index.js",
"./types": "./types.d.ts"
},
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"files": [
"lib",
"types.d.ts"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "tsc && node ./esbuild.config.js",
"test": "jest"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@univerjs/plugin-core": "workspace:*",
"@univerjs/ui": "0.4.0-alpha.1",
"css-loader": "^7.1.2",
"esbuild": "^0.24.0",
"jest": "^29.7.0",
"mock-fs": "^5.4.0",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}