-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "@arcath/utils",
"version": "0.0.0-semantically-released",
"main": "lib/index.js",
"sideEffects": false,
"scripts": {
"test": "vitest",
"lint": "kcd-scripts lint",
"build": "tsc",
"build:index": "node ./scripts/build.cjs",
"document": "typedoc --out ./docs --entryPoints src/index.ts --name Utils --readme Readme.md && echo utils.arcath.net > ./docs/CNAME",
"validate": "kcd-scripts validate",
"format": "kcd-scripts format"
},
"author": "Adam Laycock <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.5",
"@vitest/coverage-istanbul": "^1.4.0",
"expect-type": "^0.15.0",
"kcd-scripts": "^13.0.0",
"prettier": "^2.8.6",
"ts-node": "^10.9.1",
"typedoc": "^0.23.28",
"typescript": "^5.0.2",
"vitest": "^1.4.0"
},
"dependencies": {
"read-pkg-up": "^9.1.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off"
},
"parserOptions": {
"project": "./tsconfig.eslint.json"
}
},
"release": {
"branches": [
"master"
]
}
}