-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.58 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.58 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
{
"name": "@fictjs/react",
"version": "0.3.0",
"description": "React interoperability layer for Fict",
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/fictjs/react.git"
},
"homepage": "https://github.com/fictjs/react#readme",
"bugs": {
"url": "https://github.com/fictjs/react/issues"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"src"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./loader": {
"types": "./dist/loader.d.ts",
"import": "./dist/loader.js",
"require": "./dist/loader.cjs"
},
"./preset": {
"types": "./dist/preset.d.ts",
"import": "./dist/preset.js",
"require": "./dist/preset.cjs"
}
},
"scripts": {
"build": "tsup",
"prepack": "pnpm run build",
"dev": "tsup --watch",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"test": "vitest run",
"test:it": "vitest run --config vitest.it.config.ts",
"test:pack-smoke": "bash ./scripts/pack-smoke.sh",
"test:watch": "vitest",
"test:e2e": "playwright test",
"clean": "rm -rf dist coverage"
},
"peerDependencies": {
"@fictjs/runtime": ">=0.10.0",
"@vitejs/plugin-react": "^5.0.0",
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.0.0",
"vite": "^7.0.0"
},
"peerDependenciesMeta": {
"@vitejs/plugin-react": {
"optional": true
},
"vite": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@fictjs/runtime": "^0.10.0",
"@playwright/test": "^1.58.2",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.1.1",
"keywords": [
"fict",
"react"
],
"license": "MIT",
"author": "unadlib"
}