generated from wr-projects/github-jstemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "utils",
"version": "0.0.1-alpha",
"description": "A short description of the project to go in the readme",
"type": "module",
"keywords": [
"webreadyprojects",
"wrprojects",
"opensource",
"2022"
],
"homepage": "https://github.com/wr-projects/utils#README",
"bugs": {
"url": "https://github.com/wr-projects/utils/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "@wr-projects <[email protected]> (https://github.com/wr-projects/)"
},
"directories": {
"doc": "./docs",
"lib": "./packages/",
"example": "./examples"
},
"repository": {
"url": "wr-projects/utils.git",
"type": "git"
},
"sideEffects": false,
"scripts": {
"clean": "pnpm --parallel --stream clean",
"clean:core": "pnpm --filter='./packages/**' --parallel --stream clean",
"clean:node": "rimraf 'packages/**/node_modules' 'docs/node_modules' 'node_modules'",
"lint": "eslint --ext .vue,.ts,.js,.mjs,.cjs .",
"prepare": "husky install .github/.husky",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.{vue,ts,js,mjs,cjs}": "eslint --fix",
"*.{json,yml,yaml,css,scss}": "prettier --write",
"package.json": "sort-package-json"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"engines": {
"node": "^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"private": true,
"devDependencies": {
"@types/node": "^18.19.71",
"@types/rimraf": "^3.0.2",
"eslint": "^8.57.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"sort-package-json": "^2.14.0",
"typescript": "^4.9.5"
}
}