-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.6 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
58
59
60
61
62
63
64
65
66
67
{
"name": "@toplocs/plugin-sdk",
"version": "1.1.0",
"description": "Official SDK for developing plugins for the TopLocs decentralized community platform",
"keywords": [
"toplocs",
"plugin",
"sdk",
"vue",
"typescript",
"module-federation"
],
"homepage": "https://github.com/toplocs/plugin-sdk#readme",
"bugs": {
"url": "https://github.com/toplocs/plugin-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/toplocs/plugin-sdk.git"
},
"license": "MIT",
"author": "TopLocs Team",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly --noEmitOnError false",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"vue": "^3.0.0",
"vue-router": "^4.0.0"
},
"dependencies": {
"@originjs/vite-plugin-federation": "^1.4.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "~5.5.4",
"vite": "^5.4.8",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"vue-tsc": "^2.1.6"
}
}