-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "treemate",
"version": "0.3.10",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
"sideEffects": false,
"files": [
"es",
"lib"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.3.0",
"c8": "^7.12.0",
"eslint": "^7.10.0",
"eslint-config-standard": "^16.0.1",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^5.1.1",
"prettier": "2.5.1",
"typescript": "^4.0.3",
"vitepress": "1.0.0-alpha.4",
"vitest": "^0.20.3"
},
"scripts": {
"build": "tsc --project tsconfig.build.esm.json && tsc --project tsconfig.build.cjs.json ",
"lint": "prettier --write src/**/* docs/* *.js && eslint --fix \"./src/**/*.ts\"",
"release": "npm run build && npm publish",
"test": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/07akioni/treemate.git"
},
"author": "07akioni",
"license": "MIT",
"bugs": {
"url": "https://github.com/07akioni/treemate/issues"
},
"homepage": "https://github.com/07akioni/treemate#readme",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"react",
"react-dom",
"@types/react"
]
}
}
}