-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (61 loc) · 2.24 KB
/
package.json
File metadata and controls
62 lines (61 loc) · 2.24 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
{
"name": "ylm",
"version": "1.0.1-beta.1",
"description": "",
"main": "index.js",
"type": "module",
"packageManager": "pnpm@9.5.0",
"workspaces": [
"packages/storybook",
"packages/components/*",
"packages/yjs/*"
],
"scripts": {
"clean": "pnpm --parallel --stream --if-present run /^clean:.*/ && rm -rf node_modules",
"dev": "pnpm --filter @y-block/* --parallel --stream --if-present run /^dev:.*/ ",
"publish:y-block": "pnpm run build && pnpm run centralize && pnpm run publish --no-git-checks",
"build": "pnpm compile && pnpm types && pnpm exports",
"compile": "pnpm --parallel --stream --if-present run /^build:compile/ ",
"types": "pnpm --parallel --stream --if-present run /^build:types/ ",
"exports": "pnpm --parallel --stream --if-present run /^build:exports/ ",
"build:formas": "pnpm --filter @formas/* --parallel --stream --if-present run /^build:.*/ ",
"centralize": "pnpm --parallel --stream --if-present centralize",
"publish": "pnpm publish --access public --tag beta",
"dev:build": "pnpm build:local --watch",
"build:local": "pnpm - --if-present run /^build:.*/ && pnpm centralize ",
"dev:storybook": "pnpm --filter st dev",
"build:storybook": "pnpm --filter st build ",
"create:component": "scaff component-monorepo packages/components && pnpm i",
"create:yjs:component": "scaff component-monorepo packages/yjs && pnpm i",
"create:ystore:component": "scaff component-monorepo packages/ystore && pnpm i"
},
"keywords": [],
"author": "",
"license": "ISC",
"prettier": {
"tabWidth": 4,
"singleQuote": false,
"endOfLine": "lf"
},
"dependencies": {
"@atomico/exports": "^1.13.2",
"@atomico/hooks": "^4.4.1",
"@atomico/postcss-tokens": "^3.5.0",
"@atomico/run": "^0.14.2",
"@atomico/scaffold": "^2.9.5",
"@atomico/storybook": "^2.6.0",
"@atomico/tsconfig": "^1.1.2",
"@atomico/use-disabled": "^2.0.0",
"@atomico/vite": "^2.21.1",
"@storybook/types": "^8.1.11",
"@y-block/primitives": "workspace:*",
"atomico": "^1.77.1",
"typescript": "^5.2.2",
"vite": "^5.1.6"
},
"devDependencies": {
"@storybook/docs-tools": "^8.2.5",
"vite-tsconfig-paths": "^4.3.2",
"vite": "^5.1.6"
}
}