-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "danmaku-vue",
"description": "基于 Vue3 的弹幕交互组件",
"version": "1.0.2",
"author": "dshuais",
"private": false,
"type": "module",
"main": "./dist/danmaku-vue.umd.cjs",
"module": "./dist/danmaku-vue.js",
"types": "./dist/index.d.ts",
"style": "./dist/style.css",
"files": [
"dist"
],
"exports": {
"./css": "./dist/style.css",
".": {
"import": "./dist/danmaku-vue.js",
"require": "./dist/vue-amazing-ui.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "run-p build-only",
"pages": "vite build --mode gh-pages",
"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",
"format": "prettier --write src/",
"package": "rollup -c build/rollup.config.js"
},
"devDependencies": {
"@types/stats.js": "^0.17.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.62.1",
"sass-loader": "^13.3.1",
"stats.js": "^0.17.0",
"typescript": "~5.0.4",
"vite": "^4.3.5",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-libcss": "^1.0.6",
"vue": "^3.3.2",
"vue-tsc": "^1.6.5"
},
"homepage": "https://github.com/dshuais/danmaku-vue",
"keywords": [
"danmaku-vue",
"danmaku",
"vue-danmaku",
"barrage",
"vue-barrage",
"弹幕"
],
"license": "MIT"
}