This repository was archived by the owner on Jan 5, 2025. It is now read-only.
forked from ricokahler/next-plugin-preval
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.61 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.61 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@systemfsoftware/next-plugin-preval",
"version": "0.0.0",
"description": "",
"keywords": [
"next",
"next.js",
"preval"
],
"repository": {
"type": "git",
"url": "https://github.com/ricokahler/next-plugin-preval.git"
},
"license": "MIT",
"author": {
"name": "Rico Kahler",
"email": "ricokahler@me.com",
"url": "https://github.com/ricokahler"
},
"files": [
"dist"
],
"tshy": {
"project": "./tsconfig.build.json",
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts",
"./config": "./src/config.ts",
"./loader": "./src/loader.ts"
},
"sourceDialects": [
"@systemfsoftware/source"
]
},
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"semantic-release": "semantic-release",
"prepare": "pnpm turbo build",
"clean": "rimraf dist .tshy .tshy-build",
"build": "pnpm run clean && tshy",
"lint": "eslint src",
"build-example-app": "./scripts/build-example-app"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.13.16",
"babel-plugin-module-resolver": "^4.1.0",
"loader-utils": "^2.0.0",
"regenerator-runtime": "^0.14.0",
"require-from-string": "^2.0.2",
"tsconfig-paths": "^3.9.0",
"webpack": "^5.56.0"
},
"devDependencies": {
"@babel/cli": "7.24.8",
"@babel/eslint-parser": "7.25.1",
"@babel/preset-typescript": "7.24.7",
"@total-typescript/tsconfig": "^1.0.4",
"@types/babel__core": "7.20.5",
"@types/jest": "26.0.24",
"@types/node": "^22.5.5",
"@types/require-from-string": "1.2.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.10.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"jest": "27.5.1",
"next": "14.2.7",
"prettier": "2.8.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "^6.0.1",
"semantic-release": "17.4.7",
"tshy": "^3.0.2",
"turbo": "^2.1.2",
"typescript": "4.9.5"
},
"peerDependencies": {
"next": "^9 || ^10 || ^11 || ^12.0.0 || ^13 || ^14"
},
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@systemfsoftware/source": "./src/index.ts",
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
},
"./config": {
"import": {
"@systemfsoftware/source": "./src/config.ts",
"types": "./dist/esm/config.d.ts",
"default": "./dist/esm/config.js"
},
"require": {
"types": "./dist/commonjs/config.d.ts",
"default": "./dist/commonjs/config.js"
}
},
"./loader": {
"import": {
"@systemfsoftware/source": "./src/loader.ts",
"types": "./dist/esm/loader.d.ts",
"default": "./dist/esm/loader.js"
},
"require": {
"types": "./dist/commonjs/loader.d.ts",
"default": "./dist/commonjs/loader.js"
}
}
},
"module": "./dist/esm/index.js",
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts"
}