-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "@netless/app-in-mainview-plugin",
"version": "0.0.9",
"files": [
"dist"
],
"main": "./dist/app-in-mainview-plugin.js",
"module": "./dist/app-in-mainview-plugin.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite --force",
"types:bundler": "tsc --emitDeclarationOnly",
"build:bundler": "vite build --config vite.config.bundler.js && yarn types:bundler",
"build": "cross-env NODE_ENV=production tsc && yarn build:bundler",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@netless/window-manager": "^1.0.3",
"@rollup/plugin-babel": "^6.0.4",
"@types/lodash": "^4.14.202",
"cross-env": "^7.0.3",
"less": "^4.2.0",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"white-web-sdk": "^2.16.53",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0"
},
"peerDependencies": {
"@netless/window-manager": ">=1.0.3",
"white-web-sdk": ">= 2.16.52"
},
"dependencies": {
"eventemitter2": "^6.4.9",
"lodash": "^4.17.21"
},
"directories": {
"example": "example"
},
"publishConfig": {
"access": "public"
},
"author": "hqer",
"license": "MIT"
}