-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.06 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.06 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
{
"name": "@funstack/static",
"version": "0.0.10",
"description": "FUNSTACK static library",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/uhyo/funstack-static.git",
"directory": "packages/static"
},
"keywords": [
"vite-plugin",
"react",
"framework",
"react-server-components",
"rsc"
],
"bin": {
"funstack-static-skill-installer": "./dist/bin/skill-installer.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./entries": {
"types": "./dist/entryDefinition.d.mts",
"import": "./dist/entryDefinition.mjs"
},
"./server": {
"types": "./dist/entries/server.d.mts",
"import": "./dist/entries/server.mjs"
},
"./entries/*": "./dist/entries/*.mjs"
},
"imports": {
"#rsc-client": {
"types": "./src/entries/rsc-client.ts",
"default": "./dist/entries/rsc-client.mjs"
}
},
"files": [
"dist",
"skills"
],
"scripts": {
"build": "tsdown",
"build:docs": "node --experimental-strip-types scripts/generate-ai-docs.ts",
"dev": "tsdown --watch",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "playwright test --config e2e/playwright.config.ts",
"test:e2e:dev": "playwright test --config e2e/playwright-dev.config.ts",
"typecheck": "tsc --noEmit"
},
"author": "uhyo <uhyo@uhy.ooo>",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "catalog:",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"jsdom": "^28.1.0",
"react": "catalog:",
"react-dom": "catalog:",
"tsdown": "^0.20.3",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "^4.0.18"
},
"dependencies": {
"@funstack/skill-installer": "^1.0.0",
"@vitejs/plugin-rsc": "^0.5.21",
"react-error-boundary": "^6.1.1",
"rsc-html-stream": "^0.0.7",
"srvx": "^0.11.8"
},
"peerDependencies": {
"react": "^19.2.3",
"react-dom": "^19.2.3",
"vite": "catalog:"
}
}