-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.96 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.96 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
68
69
70
71
72
73
{
"name": "@opentiny/tiny-schema-renderer",
"version": "1.0.0-beta.6",
"packageManager": "pnpm@9.14.2",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"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",
"types": "./dist/index.d.ts"
},
"./types": {
"types": "./dist/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/opentiny/tiny-schema-renderer",
"directory": "packages/canvas"
},
"bugs": {
"url": "https://github.com/opentiny/tiny-schema-renderer/issues"
},
"author": "OpenTiny Team",
"license": "MIT",
"homepage": "https://opentiny.design/tiny-engine",
"type": "module",
"dependencies": {
"@babel/core": "7.18.13",
"@opentiny/tiny-engine-builtin-component": "^2.6.0",
"@vue/babel-plugin-jsx": "^1.2.5",
"@vue/shared": "^3.3.4",
"lodash": "4.17.21",
"postcss": "^8.5.6",
"postcss-selector-parser": "^7.1.0"
},
"devDependencies": {
"@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",
"@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"
}
}