-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.49 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
{
"name": "@openwebwork/mathquill",
"description": "Easily type math in your webapp",
"version": "0.11.0-beta.3",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/openwebwork/mathquill.git"
},
"homepage": "https://github.com/openwebwork/mathquill",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"files": [
"dist/**/*"
],
"scripts": {
"build:lib": "NODE_OPTIONS='--no-warnings=ExperimentalWarning' rollup -c",
"build:dev": "webpack --mode development",
"build:web": "webpack --mode production",
"build": "npm run build:web && npm run build:lib",
"serve": "webpack serve --mode development",
"lint:eslint": "eslint ./src ./test --fix",
"lint:eslint:check": "eslint ./src ./test",
"lint:stylelint": "stylelint \"./src/**/*.less\" \"./public/**/*.css\" \"./public/**/*.html\" --fix",
"lint:stylelint:check": "stylelint \"./src/**/*.less\" \"./public/**/*.css\" \"./public/**/*.html\"",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:check": "npm run lint:eslint:check && npm run lint:stylelint:check",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@awmottaz/prettier-plugin-void-html": "^1.6.1",
"@stylistic/eslint-plugin": "^2.7.2",
"@types/mocha": "^10.0.9",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-webpack-plugin": "^4.2.0",
"globals": "^15.9.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.9.1",
"mocha": "^10.7.3",
"postcss-less": "^6.0.0",
"prettier": "^3.3.3",
"rollup": "^4.21.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-ts": "^3.4.5",
"stylelint": "^16.9.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-webpack-plugin": "^5.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
]
}