-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 955 Bytes
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
{
"name": "tuor-sandbox",
"version": "0.2.1",
"author": "codethief <git@codethief.eu>",
"repository": {
"url": "github:codethief/tuor"
},
"license": "Apache-2.0",
"type": "module",
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md",
"SECURITY.md"
],
"engines": {
"node": ">=22"
},
"bin": {
"tuor": "dist/main.js"
},
"scripts": {
"start": "./src/main.ts",
"build": "tsdown",
"test": "vitest run src/ scripts/",
"typecheck": "tsc --build",
"lint": "biome check src/ scripts/",
"lint-fix": "biome check --fix src/ scripts/"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/node": "^22",
"@types/semver": "^7.7.1",
"semver": "^7.8.5",
"tsdown": "^0.22.2",
"typescript": "^6",
"vitest": "^4.1.8"
},
"dependencies": {
"@earendil-works/gondolin": "^0.12.0",
"@stricli/core": "^1.2.7",
"arktype": "^2.2.0"
}
}