Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/platform/web/package.json
10277 views
1
{
2
"name": "godot",
3
"private": true,
4
"version": "1.0.0",
5
"description": "Development and linting setup for Godot's Web platform code",
6
"author": "Godot Engine contributors",
7
"license": "MIT",
8
"scripts": {
9
"docs": "jsdoc --template js/jsdoc2rst/ js/engine/engine.js js/engine/config.js js/engine/features.js --destination ''",
10
"lint": "cd ../.. && eslint --no-config-lookup --config ./platform/web/eslint.config.cjs ./platform/web/js ./modules ./misc/dist/html",
11
"format": "npm run lint -- --fix"
12
},
13
"devDependencies": {
14
"@eslint/js": "^9.12.0",
15
"@html-eslint/eslint-plugin": "^0.27.0",
16
"@html-eslint/parser": "^0.27.0",
17
"@stylistic/eslint-plugin": "^2.9.0",
18
"eslint": "^9.15.0",
19
"eslint-plugin-html": "^8.1.1",
20
"espree": "^10.0.1",
21
"globals": "^15.9.0",
22
"jsdoc": "^4.0.3"
23
}
24
}
25
26