-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.81 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
{
"name": "smart-scroller",
"version": "1.0.0",
"description": "Scroller based on Vue 3 & Typescript.",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "type/index.d.ts",
"files": [
"es",
"lib",
"type",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "rollup -c --environment NODE_ENV:production"
},
"keywords": [
"vue",
"vue-next",
"scroller",
"typescript",
"tsx"
],
"repository": {
"type": "git",
"url": "https://github.com/Zen33/scroller.git"
},
"bugs": {
"url": "https://github.com/Zen33/scroller/issues"
},
"homepage": "http://7te.net",
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"vue": "^3.2.31"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-url": "^6.0.0",
"@sindresorhus/is": "^4.6.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/babel-plugin-transform-vue-jsx": "^1.2.1",
"@vue/compiler-sfc": "^3.2.31",
"@vueuse/core": "^8.3.1",
"core-js": "^3.21.1",
"esbuild": "^0.14.38",
"eslint-plugin-import": "^2.25.4",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-esbuild": "^4.5.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-import-css": "^3.0.3",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-vue": "^6.0.0",
"typescript": "^4.6.3"
}
}