Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"semi": false,
"semi": true,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "none",
"endOfLine": "auto"
"trailingComma": "es5",
"endOfLine": "auto",
"insertFinalNewline": true
}
7 changes: 0 additions & 7 deletions index.js

This file was deleted.

21 changes: 16 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,23 @@
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"pub": "pnpm publish --no-git-checks --access=public"
"pub": "pnpm publish --no-git-checks --access=public",
"build:types": "tsc --emitDeclarationOnly",
"type-check": "tsc --noEmit"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js"
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": {
"types": "./dist/index.d.ts"
}
},
"repository": {
Expand All @@ -43,20 +50,24 @@
"postcss-selector-parser": "^7.1.0"
},
"devDependencies": {
"@babel/standalone": "^7.23.0",
"@types/babel__core": "^7.20.5",
"@types/lodash": "^4.17.20",
"@types/node": "^20.19.11",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.9.2",
"@opentiny/vue": "3.25.0",
"@opentiny/vue-theme": "3.25.0",
"@opentiny/vue-icon": "3.25.0",
"@opentiny/vue-chart-bar": "~3.14.0",
"@opentiny/vue-chart-histogram": "~3.14.0",
"@opentiny/vue-chart-line": "~3.14.0",
"@opentiny/vue-chart-pie": "~3.14.0",
"@opentiny/vue-chart-radar": "~3.14.0",
"@opentiny/vue-chart-ring": "3.14.0",
"@opentiny/vue-icon": "3.25.0",
"@vitejs/plugin-vue": "^5.1.2",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"eval5": "^1.4.8",
"vite": "^5.4.2",
"vue": "^3.5.0"
}
}
}
136 changes: 0 additions & 136 deletions renderer/RenderMain.js

This file was deleted.

57 changes: 0 additions & 57 deletions renderer/builtin/CanvasRouterLink.vue

This file was deleted.

26 changes: 0 additions & 26 deletions renderer/builtin/CanvasRouterView.vue

This file was deleted.

24 changes: 0 additions & 24 deletions renderer/pageCss.js

This file was deleted.

Loading