forked from DesModder/DesModder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.28 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "desmodder",
"description": "Supercharge your Desmos graph creation and sharing experience with many convenient features",
"version": "0.13.1",
"author": {
"name": "Jared Hughes"
},
"browserslist": "defaults",
"imports": {
"#i18n": "./localization/i18n-core.ts",
"#utils/*": "./src/utils/*",
"#DSM": "./src/MainController.ts",
"#globals": "./src/globals/index.ts",
"#DCGView": "./src/DCGView.ts",
"#plugins/*": "./src/plugins/*",
"#parsing/*": "./parsing/*",
"#tests": "./src/tests/puppeteer-utils.ts",
"#metadata/*": "./metadata/*",
"#components": "./src/components/index.ts"
},
"eslintIgnore": [
"dist/*.js"
],
"scripts": {
"init": "git config core.hooksPath hooks && npm install",
"build": "node ./esbuild.mjs --browser=chrome",
"build-ff": "node ./esbuild.mjs --browser=firefox",
"dev": "node ./esbuild.mjs --watch --browser=chrome",
"dev-ff": "node ./esbuild.mjs --watch --browser=firefox",
"audit-langs": "npm run build-scripts && node --enable-source-maps ./dist/audit-langs.js",
"build-scripts": "node ./scripts/build-scripts.mjs",
"fix:prettier": "prettier --cache --write .",
"fix:eslint": "eslint --fix src",
"fix": "npm run fix:eslint && npm run fix:prettier",
"lint": "npm run lint:formatting && npm run lint:types && npm run lint:eslint",
"prettier": "prettier",
"lint:formatting": "prettier --check .",
"lint:types": "tsc --build",
"eslint": "eslint",
"lint:eslint": "eslint \"**\"",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --config ./jest-config/jest-unit.config.js",
"test:integration": "jest --config ./jest-config/jest-integration.config.js --run-in-band",
"test:integration-local": "jest --config ./jest-config/jest-integration-local.config.js --run-in-band"
},
"repository": {
"type": "git",
"url": "https://github.com/DesModder/DesModder"
},
"devDependencies": {
"@lezer/generator": "^1.7.0",
"@types/chrome": "0.0.263",
"@types/desmos": "^1.6.3",
"@types/jest": "^29.5.12",
"@types/moo": "^0.5.9",
"esbuild": "^0.20.2",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-less": "^1.3.3",
"eslint": "^8.57.0",
"eslint-config-love": "^43.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-expect-message": "^1.1.3",
"jest-puppeteer": "^10.0.1",
"less": "^4.2.0",
"minimist-lite": "^2.2.1",
"node-fetch": "^3.3.2",
"prettier": "^2.8.8",
"puppeteer": "^22.6.0",
"ts-jest": "^29.1.2",
"tsutils": "^3.21.0",
"typescript": "^5.4.3"
},
"dependencies": {
"@codemirror/autocomplete": "^6.15.0",
"@codemirror/commands": "^6.3.3",
"@codemirror/language": "^6.10.1",
"@codemirror/lint": "^6.5.0",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.0",
"@ffmpeg/core": "^0.11.0",
"@ffmpeg/ffmpeg": "^0.11.6",
"@fluent/bundle": "^0.18.0",
"@lezer/common": "^1.2.1",
"@lezer/lr": "^1.4.0",
"client-zip": "^2.4.4",
"eslint-plugin-rulesdir": "^0.2.2",
"idb": "^8.0.0",
"js-tokens": "^9.0.0",
"moo": "^0.5.2",
"string-width": "^7.1.0"
}
}