-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.76 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
{
"name": "dcc",
"version": "1.0.0",
"description": "devcontainer creator",
"scripts": {
"prepare": "husky && npm run fix-getopts-import",
"fix-getopts-import": "sh -c \"find -wholename '*/getopts/index.d.ts' | xargs -rl sed -i 's/export = getopts/export default getopts/'\"",
"build": "json2ts language_schema.json src/language.d.ts && ajv compile -s language_schema.json -o src/validate_language.js && webpack --mode=production --node-env=production && copyfiles language_schema.json dist",
"format": "prettier --write -u \"**/*\"",
"lint": "eslint --max-warnings=0 '**/*.js' '**/*.ts'",
"validate-yaml": "ajv validate -s language_schema.json --errors=text --verbose -d",
"synchronize-ci": "node synchronize-available.js && node pipeline.js",
"build-base": "node build-base.js"
},
"author": "Danilo Hoffmann",
"license": "MIT",
"config": {
"skip-languages": "hare,cicada"
},
"dependencies": {
"@types/js-yaml": "^4.0.9",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.3",
"ajv-cli": "^5.0.0",
"copyfiles": "^2.4.1",
"getopts": "^2.3.0",
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^15.0.2",
"lodash-es": "^4.17.21",
"raw-loader": "^4.0.2",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-promise": "^7.1.0",
"glob": "^11.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-sh": "^0.14.0",
"typescript-eslint": "^8.12.2"
}
}