-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
89 lines (89 loc) · 2.42 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
{
"name": "vue-xrender",
"version": "0.1.10",
"description": "A library that allows you to render jsx in vue template or render template string in jsx, free rendering is up to you. Support vue2 and vue3.",
"keywords": [
"vue",
"vue-xrender",
"vue-superman",
"component",
"utils"
],
"author": "yangjinming <https://github.com/2214962083>",
"funding": "https://github.com/sponsors/2214962083",
"license": "MIT",
"private": false,
"scripts": {
"build": "vue-tsc --noEmit &&esno ./scripts/build.ts",
"build:watch": "cross-env WATCH=true pnpm build",
"clean": "rimraf ./dist/**/*",
"dev": "vite",
"test": "pnpm test:all",
"test:2": "vue-demi-switch 2 vue2 &&vitest run --silent",
"test:3": "vue-demi-switch 3 &&vitest run --silent",
"test:all": "pnpm test:3 &&pnpm test:2 &&vue-demi-switch 3",
"test:watch": "pnpm test:3 -- --watch",
"type-check": "tsc --noEmit"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"unpkg": "./dist/index.min.umd.js",
"jsdelivr": "./dist/index.min.umd.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./*": "./*"
},
"files": [
"dist"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/2214962083/vue-superman.git",
"directory": "packages/vue-xrender"
},
"bugs": {
"url": "https://github.com/2214962083/vue-superman/issues"
},
"homepage": "https://github.com/2214962083/vue-superman#readme",
"peerDependencies": {
"@vue/composition-api": "^1.1.0",
"vue": "^2.6.0 || ^3.2.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"vue-demi": "*"
},
"devDependencies": {
"@types/node": "^17.0.24",
"@types/rimraf": "^3.0.2",
"@vitejs/plugin-vue": "^2.3.1",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/composition-api": "^1.4.9",
"@vue/test-utils": "^2.0.0-rc.21",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"esno": "^0.14.1",
"jsdom": "^19.0.0",
"rimraf": "^3.0.2",
"superman-shared": "workspace:*",
"typescript": "4.6.3",
"vite": "^2.9.5",
"vitest": "^0.9.3",
"vue": "^3.2.31",
"vue-tsc": "^0.34.7",
"vue2": "npm:vue@^2.6.14"
}
}