-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.23 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
{
"name": "@uos/plugin-setup-studio",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Guided setup and apply plugin for UOS environments built on @uos/core.",
"keywords": [
"uos",
"paperclip-plugin",
"guided-setup",
"onboarding",
"apply-ux"
],
"scripts": {
"test": "node --test tests/smoke.test.mjs",
"plugin:build": "node ./esbuild.config.mjs",
"plugin:build:rollup": "rollup -c",
"plugin:dev": "node ./esbuild.config.mjs --watch",
"plugin:dev:ui": "paperclip-plugin-dev-server --root . --ui-dir dist/ui --port 4177",
"plugin:test": "vitest run --config ./vitest.plugin.config.ts",
"plugin:typecheck": "tsc --noEmit -p ./tsconfig.plugin.json"
},
"paperclipPlugin": {
"manifest": "./dist/manifest.js",
"worker": "./dist/worker.js",
"ui": "./dist/ui/"
},
"devDependencies": {
"@paperclipai/plugin-sdk": "^2026.325.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^24.6.0",
"@types/react": "^19.0.8",
"esbuild": "^0.27.3",
"rollup": "^4.38.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"peerDependencies": {
"react": ">=18"
}
}