-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
36 lines (36 loc) · 916 Bytes
/
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
35
36
{
"name": "vfx-js-monorepo",
"private": true,
"packageManager": "npm@11.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --ui tui",
"clean": "turbo run clean",
"lint": "turbo run lint",
"prepare": "husky",
"test": "npm --workspace=@vfx-js/core test",
"prepare-release": "changeset && turbo run build lint test && changeset version",
"release": "changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.27.11"
},
"devDependencies": {
"husky": "^9.1.7",
"turbo": "^2.3.3"
},
"author": "AMAGI <mail@amagi.dev> (https://amagi.dev/)",
"homepage": "https://github.com/fand/vfx-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fand/vfx-js.git"
},
"bugs": {
"url": "https://github.com/fand/vfx-js/issues"
},
"keywords": [],
"license": "MIT"
}