-
Notifications
You must be signed in to change notification settings - Fork 3
/
_package.json
109 lines (109 loc) · 3.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
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
{
"name": "<%= name %>",
"version": "0.0.0",
"description": "<%= description %>",
"types": "types/<%= name %>.d.ts",
"main": "dist/<%= name %>.cjs.js",
"module": "dist/<%= name %>.esm.js",
"unpkg": "dist/<%= name %>.js",
"jsdelivr": "dist/<%= name %>.js",
"cdn": "dist/<%= name %>.js",
"files": [
"dist",
"types"
],
"scripts": {
"test": "ava",
"test:snapshot": "ava --update-snapshots",
"build": "rimraf dist && npm run bundle && npm run bundle:min",
"bundle": "rollup -c build/rollup.config.ts",
"bundle:min": "rollup -c build/rollup.min.config.ts",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:css",
"lintfix": "npm run lint:prettier:fix && npm run lint:eslint:fix && npm run lint:css:fix",
"lint:js": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist)/**/}*.{js,ts,vue}\" --ignore-path .gitignore",
"lint:css": "stylelint \"{,!(node_modules|dist)/**/}*.{css,scss,vue}\" --ignore-path .gitignore",
"lint:css:fix": "stylelint --fix \"{,!(node_modules|dist)/**/}*.{css,scss,vue}\" --ignore-path .gitignore",
"lint-staged": "lint-staged",
"prepare": "husky install",
<%_ if (docs === 'vuepress') { _%>
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
<%_ } _%>
"release": "shipjs prepare"
},
"peerDependencies": {
"@vue/composition-api": "^1.7.0"
},
"devDependencies": {
"@ava/babel": "^2.0.0",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-beep": "^0.2.0",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-sucrase": "^4.0.4",
"@types/node": "^18.0.6",
"@vue/composition-api": "^1.7.0",
"@vue/test-utils": "^2.0.2",
"ava": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"prettier": "^2.7.1",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^3.0.0",
"rollup": "^2.77.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "5.1.9",
"sass": "^1.53.0",
"shipjs": "^0.24.4",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0",
"typescript": "^4.7.4",
"vue": "^2.7.7",
"vuepress": "^1.9.7",
<%_ if (docs === 'vuepress') { _%>
"vuepress": "^1.9.7",
<%_ } _%>
"vue-template-compiler": "^2.7.7"
},
"keywords": [
"<%= name %>"
],
"author": {
"name": "<%= fullname %>",
"email": "<%= email %>",
"url": "<%= website %>"
},
"license": "MIT",
"repository": {
"url": "git+https://github.com/<%= username %>/<%= name %>",
"type": "git"
},
"private": false,
"sideEffects": false,
"bugs": {
"url": "https://github.com/<%= username %>/<%= name %>/issues"
},
"homepage": "https://github.com/<%= username %>/<%= name %>#readme"
}