-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.96 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
{
"name": "peertube-plugin-podping",
"description": "PeerTube plugin Podping",
"version": "0.1.0",
"license": "AGPL-3.0",
"author": {
"name": "Alecks Gates",
"url": "https://github.com/agates/peertube-plugin-podping"
},
"bugs": "https://github.com/agates/peertube-plugin-podping/issues",
"clientScripts": [
{
"script": "dist/client/common-client-plugin.js",
"scopes": [
"common"
]
}
],
"css": [
"dist/assets/style.css"
],
"engine": {
"peertube": ">=5.2.0"
},
"homepage": "https://github.com/agates/peertube-plugin-podping",
"keywords": [
"peertube",
"plugin",
"podping"
],
"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.cjs",
"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",
"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"
},
"devDependencies": {
"@peertube/feed": "^5.1.0",
"@peertube/peertube-types": "^5.2.0",
"@tsconfig/node16": "^1.0.3",
"@types/node": "^16.18.30",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"esbuild": "^0.17.19",
"eslint": "^8.21.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.54.5",
"stylelint": "^15.6.1",
"stylelint-config-recommended-scss": "^11.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"node-fetch": "^2.6.11"
}
}