-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1015 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "pattern-gen",
"private": true,
"version": "0.1.0",
"description": "Turns an SVG logo into a measured, reportable system of brand patterns.",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @pattern-gen/engine && npm run build -w @pattern-gen/cli && npm run build -w @pattern-gen/forge",
"typecheck": "tsc -b packages/engine packages/cli packages/forge",
"test": "npm run test -w @pattern-gen/engine && npm run test -w @pattern-gen/forge",
"sync": "node scripts/sync-engine.mjs",
"studio": "npm run sync && npm --prefix studio run dev",
"studio:build": "npm run sync && npm run -s specimen && npm --prefix studio run build",
"studio:test": "npm --prefix studio run test",
"gen": "npm run -s build -w @pattern-gen/engine && node packages/cli/dist/index.js",
"specimen": "npm run -s build -w @pattern-gen/engine && node scripts/build-specimen.mjs"
},
"devDependencies": {
"typescript": "^5.6.3"
}
}