-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "videoShowcaseMaker",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"packageManager": "[email protected]",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin typescript",
"checks": "yarn checks:lint",
"checks:lint": "eslint \"src/**/*.ts*\" \"examples/**/*.ts*\"",
"checks:lint:fix": "yarn checks:lint --fix",
"examplesServer": "http-server -c-1",
"watch": "yarn build -w",
"prepare": "husky install"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/glob": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"glob": "^10.3.10",
"http-server": "^14.1.1",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}