-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.61 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.61 KB
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": "@tuyau/monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.32.1",
"description": "Typesafe API toolkit for AdonisJS",
"author": "Julien Ripouteau <julien@ripouteau.com>",
"license": "MIT",
"homepage": "https://github.com/Julien-R44/tuyau#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Julien-R44/tuyau.git"
},
"bugs": {
"url": "https://github.com/Julien-R44/tuyau/issues"
},
"keywords": [
"adonisjs",
"typescript",
"typesafe",
"api",
"rpc"
],
"scripts": {
"typecheck": "pnpm run --parallel typecheck",
"lint": "oxlint .",
"format": "oxfmt --write .",
"test": "pnpm run --parallel --filter=!@tuyau/playground* test",
"build": "pnpm run -r --filter=!@tuyau/playground* build",
"checks": "pnpm lint && pnpm typecheck && pnpm test",
"release": "pnpm run build && changeset publish"
},
"devDependencies": {
"@adonisjs/tsconfig": "^2.0.0",
"@ark/attest": "^0.56.0",
"@changesets/cli": "^2.30.0",
"@japa/assert": "^4.2.0",
"@japa/expect-type": "^2.0.4",
"@japa/file-system": "^3.0.0",
"@japa/runner": "^5.3.0",
"@japa/snapshot": "^2.0.10",
"@poppinss/ts-exec": "^1.4.4",
"@types/node": "^25.5.0",
"c8": "^11.0.0",
"copyfiles": "^2.4.1",
"del-cli": "^7.0.0",
"nock": "^14.0.11",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"wrangler": "^4.74.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}