generated from codes-templates/npm-vue3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.92 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "my-custom-vue3-package",
"version": "0.0.2",
"description": "npm template for vue3s",
"keywords": [
"vue3"
],
"homepage": "https://github.com/codes-templates/npm-vue3#readme",
"bugs": {
"url": "https://github.com/codes-templates/npm-vue3/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codes-templates/npm-vue3.git"
},
"license": "MIT",
"author": "jerrywu001 <[email protected]>",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"global.d.ts"
],
"workspaces": [
"docs",
"playground"
],
"scripts": {
"storybook": "npm run storybook -w playground",
"build": "tsup && npm run build:css",
"dev": "npm run dev -w playground",
"dev:use-bundle": "run-p tsup-w dev-pack",
"docs": "npm run docs:dev -w docs",
"build:docs": "npm run docs:build -w docs",
"build:css": "npm run build:scss && npm run build:postcss && rimraf rf ./src/index.css",
"build:scss": "sass --no-source-map --style=compressed src/styles/main.scss src/index.css",
"build:postcss": "postcss src/index.css -o dist/index.css",
"build:vite": "vite build && npm run build:css",
"build:storybook": "npm run build:storybook -w playground",
"preview:docs": "npm run docs:serve -w docs",
"lint": "eslint --ext .ts,.tsx,.vue ./src",
"tsup-w": "tsup --watch",
"dev-pack": "npm run dev:usepack -w playground",
"prepare": "chmod a+x .husky/* && husky install",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --tag --push",
"stylelint": "stylelint **/*.{css,less,scss,vue}",
"test": "vitest",
"test:ui": "vitest --ui",
"typecheck": "tsc && vue-tsc"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/plugin-transform-typescript": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@swc/core": "^1.3.38",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@testing-library/vue": "^6.6.1",
"@types/lodash.isequal": "^4.5.6",
"@types/lz-string": "^1.3.34",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vitest/ui": "^0.29.2",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/eslint-config-typescript": "^11.0.2",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"bumpp": "^9.0.0",
"core-js": "^3.29.0",
"cssnano": "^5.1.15",
"esbuild-plugin-babel": "^0.2.3",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.2",
"npm": "^9.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-loader": "^7.0.2",
"postcss-nested": "^6.0.1",
"postcss-scss": "^4.0.6",
"rimraf": "^4.3.1",
"sass": "^1.58.3",
"shelljs": "^0.8.5",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-prettier": "^2.0.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-dts": "^2.0.2",
"vitest": "^0.29.2",
"vue-tsc": "^1.2.0"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
},
"engines": {
"node": ">=16",
"npm": ">=7"
}
}