-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"name": "v3-waterfall",
"version": "2.0.0-beta.9",
"private": false,
"type": "module",
"main": "./dist/v3-waterfall.umd.js",
"module": "./dist/v3-waterfall.js",
"types": "./dist/typings/index.d.ts",
"exports": {
"./dist/style.css": "./dist/style.css",
".": {
"import": "./dist/v3-waterfall.js",
"require": "./dist/v3-waterfall.umd.js",
"types": "./dist/typings/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"rm": "rimraf dist && rimraf github-page",
"build:page": "rimraf github-page && cross-env TARGET=page vite build",
"build:npm": "rimraf dist && cross-env TARGET=npm vite build && pnpm build:types",
"build:types": "node ./scripts/genTypes.js",
"build": "pnpm build:page && pnpm build:npm",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write lib/ src/"
},
"devDependencies": {
"vue": "^3.4.21",
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.1",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"npm-run-all2": "^6.1.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"sass": "^1.74.1",
"typescript": "~5.4.0",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.8.1",
"vue-tsc": "^2.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gk-shi/v3-waterfall.git"
},
"homepage": "https://github.com/gk-shi/v3-waterfall",
"keywords": [
"waterfall",
"vue3",
"vite",
"typescript"
],
"license": "MIT"
}