-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.17 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.17 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
{
"name": "com.plainlyvideos.after-effects-plugin",
"version": "1.3.1",
"author": "Plainly Videos",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"build:test": "turbo run build-test",
"test": "turbo run test",
"test:ci:coverage": "turbo run test:ci:coverage",
"biome": "biome check .",
"biome:fix": "biome check --write .",
"build:clean": "yarn build:aescripts && yarn build:plugin",
"build:aescripts": "cd plainly-aescripts && yarn install --immutable && yarn build && cd ..",
"build:plugin": "cd plainly-plugin && yarn install --immutable && yarn build && cd ..",
"build:types": "cd plainly-types && yarn install --immutable && yarn build && cd ..",
"package": "rimraf package && yarn build:clean && node ./scripts/preparePackage.cjs",
"prepare": "rimraf package && node ./scripts/preparePackage.cjs",
"postinstall": "husky",
"husky-check": "yarn biome"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"husky": "^9.1.7",
"rimraf": "^6.1.3",
"turbo": "^2.6.3"
},
"packageManager": "yarn@3.8.7",
"workspaces": [
"plainly-aescripts",
"plainly-plugin",
"plainly-types"
]
}