-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 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
{
"name": "@yesterday-ai/paperclip-plugin-company-wizard",
"version": "0.1.2",
"type": "module",
"description": "AI-powered wizard to bootstrap paperclip agent companies from composable templates",
"scripts": {
"build": "node ./esbuild.config.mjs",
"build:rollup": "rollup -c",
"dev": "node ./esbuild.config.mjs --watch",
"dev:ui": "paperclip-plugin-dev-server --root . --ui-dir dist/ui --port 4177",
"test": "vitest run --config ./vitest.config.ts",
"test:logic": "node --test src/logic/*.test.js",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"prettier --write"
]
},
"files": [
"dist/",
"templates/"
],
"paperclipPlugin": {
"manifest": "./dist/manifest.js",
"worker": "./dist/worker.js",
"ui": "./dist/ui/"
},
"keywords": [
"paperclip",
"plugin",
"workspace"
],
"author": "@lx-0 <https://github.com/lx-0>",
"license": "MIT",
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.574.0",
"tailwind-merge": "^3.4.1"
},
"devDependencies": {
"@paperclipai/plugin-sdk": "2026.318.0",
"@paperclipai/shared": "2026.318.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@tailwindcss/postcss": "^4.0.7",
"@types/node": "^24.6.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.27.3",
"esbuild-postcss-plugin": "^0.0.7",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"rollup": "^4.38.0",
"tailwindcss": "^4.0.7",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
}
}