-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.92 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "peertube-plugin-quickstart-typescript",
"description": "PeerTube plugin quickstart typescript",
"version": "1.0.0",
"license": "AGPL-3.0",
"author": {
"name": "John Livingston",
"url": "https://github.com/JohnXLivingston"
},
"bugs": "https://github.com/JohnXLivingston/peertube-plugin-quickstart-typescript/issues",
"clientScripts": [
{
"script": "dist/client/common-client-plugin.js",
"scopes": [
"common"
]
}
],
"css": [
"dist/assets/style.css"
],
"engine": {
"peertube": ">=4.2.0"
},
"homepage": "https://github.com/JohnXLivingston/peertube-plugin-quickstart-typescript",
"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",
"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": {
"fr-FR": "./languages/fr.json"
},
"devDependencies": {
"@peertube/peertube-types": "^4.2.2",
"@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",
"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": "^4.7.4"
}
}