-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.9 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": "wtd-workspace",
"version": "0.0.0",
"type": "module",
"description": "Worker Task Director Workspace",
"author": {
"name": "kaisalmen",
"url": "https://www.kaisalmen.de"
},
"private": "true",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kaisalmen/wtd.git"
},
"bugs": {
"url": "https://github.com/kaisalmen/wtd/issues"
},
"scripts": {
"clean": "npm run clean --workspaces",
"lint": "eslint {**/src/**/*.ts,**/src/**/*.tsx,**/test/**/*.ts,**/test/**/*.tsx}",
"lint:fix": "eslint eslint {**/src/**/*.ts,**/src/**/*.tsx,**/test/**/*.ts,**/test/**/*.tsx} --fix",
"doc": "npm run doc --workspaces",
"compile": "tsc --build tsconfig.build.json",
"watch": "tsc --build tsconfig.build.json --watch",
"build": "npm run build --workspaces",
"build:production": "npm run build:production --workspace packages/examples",
"dev": "vite",
"dev:debug": "vite --debug --force",
"release:prepare": "npm run reset:repo && npm ci && npm run lint && npm run build && npm run doc && npm run build:production",
"test": "vitest",
"test:run": "vitest --run",
"reset:repo:dry": "git clean -f -d -x --dry-run",
"reset:repo": "git clean -f -d -x"
},
"keywords": [],
"homepage": "https://github.com/kaisalmen/wtd#README",
"volta": {
"node": "20.17.0",
"npm": "10.8.3"
},
"devDependencies": {
"@types/node": "~20.16.10",
"@typescript-eslint/eslint-plugin": "~7.18.0",
"@typescript-eslint/parser": "~7.18.0",
"@vitest/browser": "~2.1.1",
"editorconfig": "~2.0.0",
"eslint": "~8.57.0",
"shx": "~0.3.4",
"typedoc": "~0.26.7",
"typedoc-plugin-markdown": "~4.2.8",
"typescript": "~5.6.2",
"vite": "~5.4.8",
"vitest": "~2.1.1",
"webdriverio": "~9.1.2"
},
"workspaces": [
"packages/wtd-core",
"packages/wtd-three-ext",
"packages/examples"
]
}