-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 909 Bytes
/
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
{
"name": "@plugxjs/core",
"type": "module",
"version": "0.1.1",
"license": "MIT",
"author": "Alex Yang <[email protected]>",
"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"
}
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build"
},
"dependencies": {
"zod": "^3.22.2",
"@locker/near-membrane-dom": "~0.13.3",
"happy-dom": "^12.2.0"
},
"devDependencies": {
"@types/node": "^20.6.5",
"@types/web": "^0.0.115",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.4",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.5"
}
}