-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.34 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
{
"name": "next-modular",
"version": "0.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"cli",
"README.md",
"LICENSE"
],
"bin": {
"next-modular": "./cli/index.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./config": {
"types": "./dist/config.d.ts",
"require": "./dist/config.js",
"import": "./dist/config.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"demo:dev": "cd demo/demo-app && npm run dev"
},
"peerDependencies": {
"next": ">=16.0.0",
"react": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.2",
"inquirer": "^12.10.0",
"ora": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "^20",
"@types/react": "^19",
"@vitest/coverage-v8": "^4.0.3",
"@vitest/ui": "^4.0.3",
"eslint": "^9.38.0",
"semantic-release": "^24.2.9",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vitest": "^4.0.3"
}
}