-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
97 lines (97 loc) · 2.71 KB
/
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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@opentiny/vue-repl",
"version": "1.1.2",
"description": "OpenTiny Vue Playground",
"homepage": "https://opentiny.github.io/tiny-vue-playground/",
"keywords": [
"vue",
"vue3",
"frontend",
"component-library",
"components",
"vue-components",
"opentiny",
"playground"
],
"files": [
"dist"
],
"author": "OpenTiny Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:opentiny/tiny-vue-playground.git"
},
"bugs": {
"url": "https://github.com/opentiny/tiny-vue-playground/issues"
},
"packageManager": "pnpm@8.6.5",
"main": "./dist/tiny-repl.js",
"module": "./dist/tiny-repl.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "node --max_old_space_size=4096 node_modules/vite/bin/vite.js build",
"preview": "vite preview",
"lint:fix": "eslint . --fix",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --config .prettierrc --write .",
"lint:staged": "lint-staged",
"prepare": "husky install",
"build:npm": "vite build --config vite.config.npm.ts ",
"visual:npm": "npx vite-bundle-visualizer -c vite.config.npm.ts",
"pub": "npm publish --no-git-checks --access=public"
},
"dependencies": {
"@opentiny/vue": "3",
"@opentiny/vue-icon": "^3.9.1",
"@vue/repl": "2.8.0",
"@vueuse/core": "^10.2.0",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"semver": "^7.5.3"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.5",
"@babel/core": "^7.20.12",
"@babel/standalone": "^7.20.14",
"@babel/types": "^7.20.7",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.6",
"@ls-lint/ls-lint": "^2.0.0",
"@types/less": "^3.0.3",
"@types/node": "^20.3.2",
"@types/semver": "^7.5.0",
"@unocss/preset-attributify": "^0.53.1",
"@unocss/preset-icons": "^0.53.1",
"@unocss/preset-uno": "^0.53.1",
"@unocss/transformer-directives": "^0.53.4",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"assert": "^2.0.0",
"compare-versions": "6.0.0-rc.2",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"hash-sum": "^2.0.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"sass": "^1.63.6",
"sucrase": "^3.34.0",
"typescript": "^5.0.2",
"unocss": "^0.53.1",
"unplugin-auto-import": "^0.16.4",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.3.9",
"vite-plugin-inspect": "^0.7.29",
"vue": "^3.2.47",
"vue-tsc": "^1.4.2"
},
"pnpm": {
"patchedDependencies": {
"@vue/repl@2.8.0": "patches/@vue__repl@2.8.0.patch"
}
}
}