-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
58 lines (58 loc) · 1.77 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
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"name": "kitten-scientists",
"version": "latest",
"description": "Contains packages relating to the Kittens Game: https://kittensgame.com/web/",
"license": "MIT",
"author": "Oliver Salzburg <oliver.salzburg@gmail.com>",
"homepage": "https://github.com/kitten-science/kitten-scientists",
"repository": {
"type": "git",
"url": "git+https://github.com/kitten-science/kitten-scientists.git"
},
"bugs": {
"url": "https://github.com/kitten-science/kitten-scientists/issues"
},
"type": "module",
"scripts": {
"build": "yarn run build:all",
"build:all": "scripts/build-all.sh",
"clean": "yarn run clean:all",
"clean:all": "rm -rf packages/*/{build,output,tsconfig.tsbuildinfo}",
"lint": "yarn run lint:all",
"lint:all": "yarn run lint:eslint && yarn run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check packages",
"test": "yarn run test:all",
"test:all": "yarn workspaces foreach --all --exclude kitten-scientists --parallel --verbose run test",
"typecheck:all": "tsc --noEmit --incremental false"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"tslib": "2.8.1"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@types/eslint": "9.6.1",
"@types/node": "22.10.5",
"@types/web": "0.0.188",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"lint-staged": "15.3.0",
"prettier": "3.3.3",
"prettier-package-json": "2.8.0",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-sh": "0.14.0",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0"
},
"keywords": [
"kitten",
"kittens",
"scientists"
],
"packageManager": "yarn@4.6.0"
}