-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.37 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.37 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
{
"name": "syw",
"version": "0.0.20",
"license": "MIT",
"workspaces": [
"packages/common",
"packages/react",
"packages/svelte",
"packages/docs"
],
"scripts": {
"react:lerna": "lerna run --scope syw-react",
"react:dev": "npm run react:lerna dev",
"react:build": "npm run react:lerna build",
"react:package": "npm run react:lerna package",
"react:preview": "npm run react:lerna preview",
"react:publish": "npm run react:lerna publish",
"svelte:lerna": "lerna run --scope syw-svelte",
"svelte:dev": "npm run svelte:lerna dev",
"svelte:build": "npm run svelte:lerna build",
"svelte:package": "npm run svelte:lerna package",
"svelte:preview": "npm run svelte:lerna preview",
"svelte:publish": "npm run svelte:lerna publish",
"docs:lerna": "lerna run --scope syw-docs",
"docs:dev": "npm run docs:lerna dev",
"docs:build": "npm run docs:lerna build",
"docs:deploy": "npx gh-pages -d public",
"common:lerna": "lerna run --scope syw-common",
"common:publish": "npm run common:lerna publish",
"build": "npm run docs:build && npm run react:build && npm run svelte:build",
"publish": "npx lerna publish --no-private"
},
"devDependencies": {
"gh-pages": "^6.3.0",
"lerna": "^8.2.2"
},
"dependencies": {
"@contentauth/c2pa-web": "^0.6.1",
"@videojs/react": "^10.0.0-beta.5"
}
}