-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.32 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@evoactivity/jsonapi-adonis",
"version": "0.1.2",
"description": "JSON:API serialization, deserialization and routing for AdonisJS",
"type": "module",
"license": "MIT",
"author": "Liam Potter <liam@liampotter.co.uk> (https://github.com/evoactivity)",
"repository": {
"type": "git",
"url": "git+https://github.com/evoactivity/jsonapi-adonis.git"
},
"homepage": "https://github.com/evoactivity/jsonapi-adonis#readme",
"bugs": {
"url": "https://github.com/evoactivity/jsonapi-adonis/issues"
},
"keywords": [
"adonisjs",
"adonis",
"lucid",
"jsonapi",
"json-api",
"api",
"serializer",
"rest"
],
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.24.0",
"exports": {
".": "./index.ts",
"./provider": "./providers/jsonapi_provider.ts",
"./middleware": "./src/negotiation_middleware.ts",
"./commands": "./commands/main.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": "./build/index.js",
"./provider": "./build/providers/jsonapi_provider.js",
"./middleware": "./build/src/negotiation_middleware.js",
"./commands": "./build/commands/main.js"
}
},
"files": [
"build"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.build.json && cp -R stubs/config stubs/make build/stubs/",
"clean": "rm -rf build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"test": "node --import=@poppinss/ts-exec bin/test.ts",
"test:example": "pnpm -C examples/blog test",
"test:all": "pnpm run test && pnpm run test:example",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"@adonisjs/core": "^7.0.0",
"@adonisjs/lucid": "^22.0.0"
},
"devDependencies": {
"@adonisjs/assembler": "^8.4.0",
"@adonisjs/core": "^7.3.3",
"@adonisjs/eslint-config": "^3.1.0",
"@adonisjs/lucid": "^22.4.2",
"@adonisjs/prettier-config": "^1.5.0",
"@adonisjs/tsconfig": "^2.0.0",
"@japa/assert": "^4.2.0",
"@japa/runner": "^5.3.0",
"@poppinss/ts-exec": "^1.4.4",
"@types/luxon": "^3.7.1",
"@types/node": "~25.9.1",
"eslint": "^10.4.0",
"luxon": "^3.7.2",
"prettier": "^3.8.3",
"typescript": "~6.0.3",
"typescript-eslint": "^8.63.0"
},
"prettier": "@adonisjs/prettier-config"
}