-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.42 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "peertube-plugin-social-crowdfunding",
"description": "PeerTube plugin integration with Goteo, the Open Source crowdfunding platform",
"version": "1.0.0",
"license": "AGPL-3.0",
"author": {
"name": "David Igón",
"url": "https://github.com/davidbeig"
},
"bugs": "https://github.com/platoniq/peertube-plugin-social-crowdfunding/issues",
"clientScripts": [
{
"script": "dist/client/common-client-plugin.js",
"scopes": [
"common"
]
},
{
"script": "dist/client/video-watch-client-plugin.js",
"scopes": [
"video-watch"
]
},
{
"script": "dist/client/video-channel-client-plugin.js",
"scopes": [
"video-channel"
]
}
],
"css": [
"dist/assets/style.css"
],
"engine": {
"peertube": ">=4.2.0"
},
"homepage": "https://github.com/platoniq/peertube-plugin-social-crowdfunding",
"keywords": [
"peertube",
"plugin"
],
"library": "./dist/server/main.js",
"scripts": {
"clean": "rm -rf dist/*",
"prepare": "npm run build",
"check:client:tsc": "npx tsc --p client/tsconfig.json --noEmit",
"build:server": "npx tsc --build server/tsconfig.json",
"build:client": "node ./scripts/build.js",
"build:styles": "npx sass --no-source-map assets:dist/assets",
"build": "npm-run-all -s clean check:client:tsc -p build:server build:client build:styles",
"watch:server": "npx tsc --build server/tsconfig.json --watch",
"lint:script": "npx eslint --ext .ts --ext .js .",
"lint:styles": "stylelint 'assets/**/*.scss'",
"test": "npm-run-all -p lint:script lint:styles"
},
"staticDirs": {
"images": "public/images"
},
"translations": {
"en-US": "./languages/en.json",
"ca-ES": "./languages/ca.json",
"es-ES": "./languages/es.json"
},
"devDependencies": {
"@peertube/peertube-types": "^5.1",
"@tsconfig/node16": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"esbuild": "^0.14.36",
"eslint": "^8.21.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.27.5",
"npm-run-all": "^4.1.5",
"sass": "^1.54.5",
"stylelint": "^14.11.0",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@ts-stack/markdown": "^1.4.0",
"node-fetch": "^2.6.11"
}
}