-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.86 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
{
"name": "@opensourceframework/next-compose-plugins",
"version": "2.4.1",
"description": "Provides a cleaner API for enabling and configuring plugins for next.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"llms.txt"
],
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"lint": "eslint . --ignore-pattern examples",
"lint:fix": "eslint . --ignore-pattern examples --fix",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riceharvest/opensourceframework.git",
"directory": "packages/next-compose-plugins"
},
"keywords": [
"next.js",
"next",
"react",
"plugins",
"compose"
],
"author": "OpenSource Framework Contributors (fork), Original: Cyril Wanner",
"license": "MIT",
"bugs": {
"url": "https://github.com/riceharvest/opensourceframework/issues?q=is%3Aissue+is%3Aopen+next-compose-plugins"
},
"homepage": "https://github.com/riceharvest/opensourceframework/tree/main/packages/next-compose-plugins#readme",
"devDependencies": {
"next": "^16.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"eslint-plugin-jest": "^29.15.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"@vitest/coverage-v8": "^2.1.9",
"vitest": "^2.1.9"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"next": ">=12.0.0 <22.0.0 || ^16.0.0",
"react": ">=18.2.0 <22.0.0 || ^19.0.0"
},
"funding": {
"type": "GitHub",
"url": "https://github.com/sponsors/riceharvest"
}
}