-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.36 KB
/
package.json
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
{
"name": "im-sang-tae",
"description": "state management library that are not dependent on the framework",
"type": "module",
"workspaces": [
"packages/vanilla",
"packages/react"
],
"scripts": {
"test": "jest",
"init": "for d in ./packages/*/ ; do (cd \"$d\" && yarn install); done",
"build:examples": "for d in ./examples/*/ ; do (cd \"$d\" && yarn build); done",
"build:vanilla": "cd ./packages/vanilla; yarn build",
"build:react": "cd ./packages/react; yarn build",
"build:all": "yarn build:vanilla && yarn build:react",
"install:examples": "for d in ./examples/*/ ; do (cd \"$d\" && yarn install); done",
"update:examples": "for d in ./examples/*/ ; do (cd \"$d\" && yarn update); done",
"publish:vanilla": "cd ./packages/vanilla; yarn publish",
"publish:react": "cd ./packages/react; yarn publish",
"unpublish:vanilla": "cd ./packages/vanilla; yarn unpublish",
"unpublish:react": "cd ./packages/react; yarn unpublish",
"version:vanilla": "cd ./packages/vanilla; yarn version",
"version:react": "cd ./packages/react; yarn version",
"test:vanilla": "cd ./packages/vanilla; yarn test",
"test:react": "cd ./packages/vanilla; yarn test"
},
"devDependencies": {
"@types/node": "^20.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.2",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]"
}