-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "your-lib",
"author": "your-name",
"description": "the Intro of your lib",
"license": "MIT",
"version": "0.0.0",
"keywords": [
"vite",
"vitejs",
"vitest",
"template"
],
"private": true,
"type": "module",
"files": [
"dist"
],
"main": "./dist/your-lib.js",
"module": "./dist/your-lib.js",
"exports": {
"import": "./dist/your-lib.js"
},
"scripts": {
"start": "vite",
"test": "vitest",
"build": "vite build",
"commit": "npx cz",
"format": "prettier . --write",
"lint": "eslint {src,__tests__}/**.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"postinstall": "simple-git-hooks",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"simple-git-hooks": "^2.8.1",
"standard-version": "^9.5.0",
"vite": "^4.0.4",
"vitest": "^0.28.3"
}
}