-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.53 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.53 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
{
"name": "token-workshop-workspace",
"version": "0.1.0",
"private": true,
"description": "Open-source Figma token authoring tool with a local design-token server",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"typecheck": "turbo typecheck",
"test": "turbo test",
"lint": "eslint packages/core/src packages/figma-plugin/src packages/server/src packages/server/bin",
"server": "pnpm --filter token-workshop exec tsx watch bin/cli.ts --dir ../../demo/tokens --port 9400",
"plugin:build": "pnpm --filter @token-workshop/figma-plugin build",
"plugin:release": "pnpm --filter @token-workshop/figma-plugin release",
"docs:preview": "node docs/serve.mjs",
"preview": "node scripts/agent-preview.mjs",
"preview:build": "pnpm --filter @token-workshop/figma-plugin build",
"preview:capture": "node scripts/capture-preview-snapshot.mjs",
"preview:server": "pnpm --filter token-workshop exec tsx watch bin/cli.ts --dir ../../demo/tokens --port 9400",
"preview:harness": "pnpm --filter @token-workshop/figma-plugin standalone -- --port 3200",
"preview:validate": "pnpm --filter @token-workshop/figma-plugin build && pnpm --filter @token-workshop/figma-plugin validate"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"playwright-core": "^1.58.2",
"turbo": "^2.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.2"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0"
}
}