-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 2.43 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
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
63
64
65
66
{
"private": true,
"author": "Nam Nguyen <nam.nguyen.node@gmail.com>",
"license": "MIT",
"repository": "willnguyen1312/socialplayer",
"homepage": "https://github.com/sponsors/willnguyen1312",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/willnguyen1312"
},
"keywords": [
"javascript",
"typescript",
"video",
"audio",
"playback",
"mobile",
"desktop",
"social",
"player",
"youtube",
"facebook",
"vimeo",
"twitch"
],
"scripts": {
"build:docs": "turbo build --filter=docs... --force --concurrency 20",
"build": "turbo build --concurrency 20",
"changeset": "changeset",
"check": "turbo run build typecheck lint test --filter=!docs --concurrency 20",
"clean": "turbo clean && rm -rf node_modules --concurrency 20",
"core": "pnpm --filter=@socialplayer/core",
"format:check": "prettier --cache --check --ignore-path .gitignore .",
"format:fix": "prettier --cache --write --ignore-path .gitignore .",
"lint": "turbo lint --concurrency 20",
"postbuild": "pnpm run size --concurrency 20",
"preview:docs": "pnpm --filter=docs preview",
"react": "pnpm --filter=@socialplayer/react --concurrency 20",
"release": "pnpm check && changeset version && changeset publish",
"size": "esno scripts/size.ts",
"start-docs": "turbo dev --filter=docs... --concurrency 20",
"start-preact": "turbo dev --filter=with-preact... --concurrency 20",
"start-angular": "turbo dev --filter=with-angular... --concurrency 20",
"start-qwik": "turbo dev --filter=with-qwik... --concurrency 20",
"start-react": "turbo dev --filter=with-react... --concurrency 20",
"start-solid": "turbo dev --filter=with-solid... --concurrency 20",
"start-svelte": "turbo dev --filter=with-svelte... --concurrency 20",
"start-vanilla": "turbo dev --filter=with-vanilla... --concurrency 20",
"start-vue": "turbo dev --filter=with-vue... --concurrency 20",
"turbo:update": "pnpx @turbo/codemod update",
"typecheck": "turbo run typecheck --concurrency 20"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"eslint": "^8.56.0",
"eslint-config-custom": "workspace:*",
"esno": "^4.0.0",
"export-size": "^0.7.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "1.11.3",
"unocss": "^0.58.3"
}
}