-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
54 lines (54 loc) · 1.7 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
{
"name": "portugol-webstudio",
"description": "IDE online para o Portugol",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/dgadelha/Portugol-Webstudio.git"
},
"keywords": [
"portugol",
"webstudio"
],
"author": "Douglas Gadêlha <[email protected]>",
"contributors": [
"Danilo Gadêlha <[email protected]>"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/dgadelha/Portugol-Webstudio/issues"
},
"homepage": "https://github.com/dgadelha/Portugol-Webstudio#readme",
"packageManager": "^[email protected]",
"scripts": {
"lint": "sherif && npm run eslint:check",
"eslint:fix": "eslint --fix 'packages/**/*.{ts,js,html}'",
"eslint:check": "eslint 'packages/**/*.{ts,js,html}'",
"start": "lerna run start --scope=@portugol-webstudio/ide",
"build": "lerna run build",
"build:w": "lerna run --parallel build:w",
"build:parser": "lerna run build --scope=@portugol-webstudio/parser",
"build:runner": "lerna run build --scope=@portugol-webstudio/runner",
"build:runtime": "lerna run build --scope=@portugol-webstudio/runtime",
"test:parser": "lerna run test --scope=@portugol-webstudio/parser",
"release": "lerna run release",
"postinstall": "patch-package"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"angular-eslint": "^19.0.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^56.0.1",
"lerna": "^8.1.9",
"patch-package": "^8.0.0",
"sherif": "^1.1.1",
"typescript": "~5.6.3",
"typescript-eslint": "^8.19.0"
},
"workspaces": [
"packages/*"
]
}