-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.9 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
{
"version": "1.5.2",
"name": "strapi-plugin-populate-all",
"description": "A lightweight plugin to recursively populate nested data in RESTful API requests",
"keywords": [],
"license": "MIT",
"author": "Jan Fässler <strapi-plugin-populate-all@faessler.be>",
"type": "commonjs",
"homepage": "https://github.com/faessler/strapi-plugin-populate-all#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/faessler/strapi-plugin-populate-all.git"
},
"bugs": {
"url": "https://github.com/faessler/strapi-plugin-populate-all/issues"
},
"strapi": {
"kind": "plugin",
"name": "populate-all",
"displayName": "Strapi Plugin Populate All",
"description": "A lightweight plugin to recursively populate nested data in RESTful API requests"
},
"exports": {
"./package.json": "./package.json",
"./strapi-server": {
"types": "./dist/server/src/index.d.ts",
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"check": "biome check",
"check:fix": "biome check --write",
"test:ts:back": "run -T tsc -p server/tsconfig.json",
"test:cover": "vitest run ./server --coverage",
"test:watch": "vitest watch ./server",
"release": "semantic-release"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@strapi/sdk-plugin": "^5",
"@strapi/strapi": "^5",
"@strapi/typescript-utils": "^5",
"@vitest/coverage-v8": "^4.0.18",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5",
"@strapi/strapi": "^5"
}
}