-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
107 lines (107 loc) · 3.12 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
98
99
100
101
102
103
104
105
106
107
{
"name": "@privyid/pdf-ajaib",
"version": "0.1.10",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/privy-open-source/pdf-ajaib.git"
},
"scripts": {
"dev": "vite --config=./demo/vite.config.ts",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint:fix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"format": "prettier --write src/",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview",
"release": "yarn lint && yarn build && changelogen --release && npm publish && git push --follow-tags"
},
"dependencies": {
"@floating-ui/dom": "^1.2.5",
"@juggle/resize-observer": "^3.4.0",
"@vueuse/core": "^9.13.0",
"@vueuse/math": "^9.13.0",
"defu": "^6.1.2",
"interactjs": "^1.10.17",
"lodash-es": "^4.17.21",
"pdfjs-dist": "^3.4.120",
"sass": "^1.60.0",
"scroll-into-view": "^1.16.2",
"vue": "^3.2.47",
"vue-demi": "^0.13.11"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@histoire/plugin-vue": "^0.15.8",
"@iconify-json/carbon": "^1.1.16",
"@interactjs/types": "^1.10.17",
"@itsy/vite-css-inject": "^1.0.2",
"@rollup/plugin-typescript": "^11.0.0",
"@rushstack/eslint-patch": "^1.2.0",
"@types/jest": "^29.5.0",
"@types/jsdom": "^21.1.0",
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.14.2",
"@types/scroll-into-view": "^1.16.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.47",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.3.0",
"@vue/tsconfig": "^0.1.3",
"babel-loader": "^8.3.0",
"changelogen": "^0.5.2",
"eslint": "^8.34.0",
"eslint-plugin-vue": "^9.9.0",
"histoire": "^0.15.9",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"typescript": "~4.8.4",
"unplugin-icons": "^0.16.0",
"vite": "^4.1.4",
"vite-plugin-css-injected-by-js": "^3.1.0",
"vite-plugin-dts": "^2.1.0",
"vitest": "^0.29.1",
"vue-loader": "^16.8.3",
"vue-tsc": "^1.2.0"
},
"peerDependencies": {
"@vue/compiler-sfc": "^3.2.47",
"@vue/composition-api": "^1.4.1",
"vue": "^2.0.0 || >=3.0.0-rc.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/main.umd.cjs",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.umd.js"
}
},
"lint-staged": {
"**/*.{js,ts,vue,html,css}": [
"yarn lint:fix"
]
}
}