-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 806 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 806 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
{
"name": "@alchemy_cms/json_api",
"version": "3.0.1",
"description": "JSON API deserializer for AlchemyCMS",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/AlchemyCMS/alchemy-json_api.git"
},
"engines": {
"node": ">=20.19.0"
},
"keywords": [
"AlchemyCMS",
"json:api",
"cms",
"headless"
],
"authors": [
"Lasse Diercks",
"Martin Meyerhoff",
"Thomas von Deyen"
],
"main": "dist/alchemy-json_api.js",
"type": "module",
"files": [
"dist"
],
"devDependencies": {
"prettier": "^3.3.3",
"vite": "^8.0.0",
"vitest": "^4.0.10"
},
"scripts": {
"build": "vite build",
"lint": "prettier --check 'src/**/*.js'",
"test": "vitest"
},
"packageManager": "pnpm@10.12.1"
}