-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.03 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
65
66
67
68
69
70
71
{
"name": "pitugues-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"copiar-arquivos": "yarn copy-files-from-to --force",
"empacotar": "yarn del-cli ./dist && yarn gerar-css && yarn gerar-web && yarn copiar-arquivos",
"gerar-css": "tailwindcss -i ./estilos.css -o ./dist/estilos.css",
"gerar-web": "yarn tsc && yarn browserify dist/index.js --s Pitugues -o dist/pitugues.js && yarn browserify dist/primitivas/index.js --s PrimitivasDelegua -o dist/primitivas.js",
"publicar": "yarn empacotar && yarn gh-pages -d dist",
"servir": "yarn http-server ./dist -o -c-1",
"testar": "yarn empacotar && yarn servir"
},
"dependencies": {
"@designliquido/delegua": "^1.27.2",
"@designliquido/delegua-criptografia": "^0.3.4",
"@designliquido/delegua-estatistica": "^0.1.1",
"@designliquido/delegua-fisica": "^0.1.0",
"@designliquido/delegua-json": "^0.3.0",
"@designliquido/delegua-matematica": "^0.4.0",
"@designliquido/delegua-tempo": "^1.1.1",
"@tailwindcss/cli": "^4.3.0",
"dompurify": "^3.2.7",
"monaco-editor": "^0.48.0",
"notyf": "^3.10.0",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@types/node": "^24.0.15",
"browserify": "^17.0.1",
"copy-files-from-to": "^3.12.1",
"del-cli": "^7.0.0",
"gh-pages": "^6.3.0",
"http-server": "^14.1.1",
"process": "^0.11.10",
"typescript": "^6.0.3"
},
"overrides": {
"dompurify": "^3.2.7"
},
"copyFiles": [
{
"from": "index.html",
"to": "dist/index.html"
},
{
"from": "exemplos.html",
"to": "dist/exemplos.html"
},
{
"from": "favicon.ico",
"to": "dist/favicon.ico"
},
{
"from": "node_modules/monaco-editor/min/vs/**/*",
"to": "dist/vs"
},
{
"from": "node_modules/monaco-editor/min-maps/**/*",
"to": "dist/min-maps"
},
{
"from": "nls/default.js",
"to": "dist/vs/editor/editor.main.nls.js"
}
],
"copyFilesSettings": {
"whenFileExists": "overwrite"
}
}