-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
{
"name": "vueuc",
"version": "0.4.64",
"description": "Util Components for Vue",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"start": "vite",
"build:site": "vite build",
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"clean": "rm -rf lib es site",
"release": "npm run clean && npm run build && npm publish",
"test": "karma start karma.config.js",
"lint": "eslint src/**/*.ts"
},
"author": "07akioni",
"license": "MIT",
"sideEffects": false,
"files": [
"es",
"lib"
],
"devDependencies": {
"@css-render/vue3-ssr": "^0.15.10",
"@types/jasmine": "^3.5.14",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"jasmine": "^3.6.1",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "^5.2.0",
"puppeteer": "^13.1.1",
"typescript": "~4.6.0",
"vite": "^2.0.1",
"vue": "^3.2.36",
"vue-router": "^4.0.12",
"@typescript-eslint/parser": "^4.33.0"
},
"dependencies": {
"@css-render/vue3-ssr": "^0.15.10",
"@juggle/resize-observer": "^3.3.1",
"css-render": "^0.15.10",
"evtd": "^0.2.4",
"seemly": "^0.3.6",
"vdirs": "^0.1.4",
"vooks": "^0.2.4"
},
"peerDependencies": {
"vue": "^3.0.11"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}